Add DeepDrftCms RCL skeleton, mount at /cms, switch NetBlocks to NuGet

This commit is contained in:
Daniel Harvey
2026-05-17 23:04:54 -04:00
parent ed61764e10
commit a64e49326d
8 changed files with 75 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
using Microsoft.Extensions.DependencyInjection;
namespace DeepDrftCms;
public static class CmsStartup
{
public static IServiceCollection AddCmsServices(this IServiceCollection services)
{
// CMS-specific services registered here as implementation waves land.
return services;
}
}