Files
2026-07-21 13:38:38 +07:00

12 lines
249 B
C#

namespace Indotalent.Infrastructure.Logging;
public static class DI
{
public static IServiceCollection AddLoggingService(this IServiceCollection services)
{
services.AddScoped<LoggingService>();
return services;
}
}