using System.Collections.Concurrent; using Microsoft.Extensions.DependencyInjection; namespace Kruzya.TelegramBot.Core.Extensions { public static class StartupExtension { public static IServiceCollection AddQueue(this IServiceCollection collection) { return collection.AddSingleton>(); } } }