14 lines
415 B
C#
14 lines
415 B
C#
|
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
|
|
||
|
|
namespace zero.Applications;
|
||
|
|
|
||
|
|
internal class ArchitectureModule : ZeroModule
|
||
|
|
{
|
||
|
|
/// <inheritdoc />
|
||
|
|
public override void Register(IZeroModuleConfiguration config)
|
||
|
|
{
|
||
|
|
config.Services.AddScoped<IBlueprintService, BlueprintService>();
|
||
|
|
//config.Services.AddScoped<BlueprintInterceptor>();
|
||
|
|
//config.Services.AddScoped<BlueprintChildInterceptor>();
|
||
|
|
}
|
||
|
|
}
|