using System; using System.Threading; using System.Threading.Tasks; namespace LittleShop.Services; public interface ITelegramBotManagerService { Task StartAsync(CancellationToken cancellationToken); Task StopAsync(CancellationToken cancellationToken); Task AddBotAsync(Guid botId, string botToken); Task RemoveBotAsync(Guid botId); Task UpdateBotSettingsAsync(Guid botId); Task GetActiveBotCount(); }