move memory-cache injection to Application-layer

This commit is contained in:
2025-10-31 10:58:22 +01:00
parent b4aa7984aa
commit 44ea893f05
2 changed files with 3 additions and 2 deletions

View File

@@ -58,6 +58,9 @@ public static class DependencyInjection
cfg.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());
});
// Add memory cache
services.AddMemoryCache();
return services;
}
}