17 lines
301 B
C#
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
|
|
}
|