using System.Threading.Tasks; using Discord.WebSocket; namespace DiscordBotCore.Bot; internal interface ICommandHandler { /// /// The method to initialize all commands /// /// Task InstallCommandsAsync(DiscordSocketClient client); }