Example #1
0
        public CommandHandler(DataModule data, string commandPrefix)
        {
            _data         = data;
            CommandPrefix = commandPrefix;

            _commandService = new CommandService();
        }
Example #2
0
        public CommandHandler(DataModule data, string commandPrefix)
        {
            CommandPrefix = commandPrefix;

            _data                = data;
            _commandService      = new CommandService();
            _customCommandModule = new CustomCommandModule(data.CustomCommands);
        }