12 lines
249 B
C#
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;
|
|
}
|
|
}
|