using GerstITS.Web.Http; namespace GerstITS.Examples.Api; public sealed partial class Module { #region Methods private static void RegisterSession(IServiceCollection container) { container.AddDistributedMemoryCache(); container.AddHttpSession(); } #endregion }