├── .gitignore ├── .replit ├── LICENSE ├── README.md ├── commands ├── Category 1 │ └── info.js └── Category 2 │ └── invite.js ├── config.json ├── handlers └── command.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/.replit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/README.md -------------------------------------------------------------------------------- /commands/Category 1/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/commands/Category 1/info.js -------------------------------------------------------------------------------- /commands/Category 2/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/commands/Category 2/invite.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "prefix": "$", 3 | 4 | "developerID": "519666024220721152" 5 | } -------------------------------------------------------------------------------- /handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/handlers/command.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diwasatreya/Advanced-Command-Handler/HEAD/package.json --------------------------------------------------------------------------------