Files
Examples/GerstITS.Examples.Api/Module.Session.cs
T

17 lines
301 B
C#

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
}