13 lines
310 B
C#
13 lines
310 B
C#
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;
|
|
}
|
|
}
|