├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── package.json └── src ├── Argument.js ├── Command.js ├── Handler.js ├── commands ├── eval.js ├── help.js └── usage.js └── index.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.enable": true, 3 | "workbench.colorCustomizations": {} 4 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/package.json -------------------------------------------------------------------------------- /src/Argument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/src/Argument.js -------------------------------------------------------------------------------- /src/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/src/Command.js -------------------------------------------------------------------------------- /src/Handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/src/Handler.js -------------------------------------------------------------------------------- /src/commands/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/src/commands/eval.js -------------------------------------------------------------------------------- /src/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/src/commands/help.js -------------------------------------------------------------------------------- /src/commands/usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/src/commands/usage.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PLASMAchicken/easy-djs-commandhandler/HEAD/src/index.js --------------------------------------------------------------------------------