Update to latest packages and show examples

This commit is contained in:
2026-07-05 22:05:53 +02:00
parent 3a36978997
commit c7ddc282ed
52 changed files with 2156 additions and 21 deletions
+16
View File
@@ -0,0 +1,16 @@
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
}