global using IGuessCache = Kruzya.TelegramBot.Core.Cache.ICacheStorage>; global using GuessCache = Kruzya.TelegramBot.Core.Cache.MemoryCache>; using Kruzya.TelegramBot.Core; using Microsoft.Extensions.DependencyInjection; namespace West.Entertainment { public class Entertainment : Module { public Entertainment(Core core) : base(core) { } public override void ConfigureServices(IServiceCollection services) { services.AddSingleton(); } } }