예제 #1
0
 public EmojiButler(DiscordSocketClient client, CommandHandlerService commandHandler, DiscordEmojiService discordEmoji, EmojiButlerConfiguration configuration)
 {
     this.client         = client;
     this.discordEmoji   = discordEmoji;
     this.commandHandler = commandHandler;
     this.configuration  = configuration;
 }
 public CommandHandlerService(DiscordSocketClient client, CommandService commands, EmojiButlerConfiguration configuration, CooldownTrackerService cooldowns, IServiceProvider serviceProvider)
 {
     this.client          = client;
     this.commands        = commands;
     this.configuration   = configuration;
     this.serviceProvider = serviceProvider;
     this.cooldowns       = cooldowns;
 }