initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace Indotalent.Infrastructure.Logging;
|
||||
|
||||
public class LoggingService(IOptions<LoggerSettingsModel> options)
|
||||
{
|
||||
private readonly LoggerSettingsModel _settings = options.Value;
|
||||
|
||||
public LoggerSettingsModel GetConfiguration() => _settings;
|
||||
}
|
||||
Reference in New Issue
Block a user