BotSharp/src/Infrastructure/BotSharp.Logger/BotSharpLoggerExtensions.cs
2023-11-29 17:23:14 -06:00

13 lines
454 B
C#

namespace BotSharp.Logger;
public static class BotSharpLoggerExtensions
{
public static IServiceCollection AddBotSharpLogger(this IServiceCollection services, IConfiguration config)
{
services.AddScoped<IContentGeneratingHook, CommonContentGeneratingHook>();
services.AddScoped<IContentGeneratingHook, TokenStatsConversationHook>();
services.AddScoped<IVerboseLogHook, VerboseLogHook>();
return services;
}
}