using __ASSISTANT_NAME__.Domain.Interfaces; using __ASSISTANT_NAME__.Infrastructure; using __ASSISTANT_NAME__.Infrastructure.Helpers; using AIAssistantModule.Core.Interfaces.SPI; using Microsoft.Extensions.DependencyInjection; namespace __ASSISTANT_NAME__ { public static class AssistantDependencyInjection { public static IServiceCollection Add__ASSISTANT_NAME__AssistantModule( this IServiceCollection services) { services.AddScoped(); services.AddScoped(); return services; } } }