├── .replit ├── LICENSE.txt ├── README.md ├── SlashCommands └── 🔰 Informational │ ├── help.js │ ├── invite.js │ ├── made-by-azury.txt │ └── stats.js ├── cluster.js ├── config.json ├── events ├── interactionCreate.js ├── made-by-azury.txt ├── ratelimitHandler.js └── ready.js ├── handler └── index.js ├── index.js ├── json.sqlite ├── models └── add-mongos.txt ├── package.json ├── replit.nix └── webport.js /.replit: -------------------------------------------------------------------------------- 1 | run = "npx node cluster.js" 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/README.md -------------------------------------------------------------------------------- /SlashCommands/🔰 Informational/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/SlashCommands/🔰 Informational/help.js -------------------------------------------------------------------------------- /SlashCommands/🔰 Informational/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/SlashCommands/🔰 Informational/invite.js -------------------------------------------------------------------------------- /SlashCommands/🔰 Informational/made-by-azury.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SlashCommands/🔰 Informational/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/SlashCommands/🔰 Informational/stats.js -------------------------------------------------------------------------------- /cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/cluster.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/config.json -------------------------------------------------------------------------------- /events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/events/interactionCreate.js -------------------------------------------------------------------------------- /events/made-by-azury.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /events/ratelimitHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/events/ratelimitHandler.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/events/ready.js -------------------------------------------------------------------------------- /handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/handler/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/index.js -------------------------------------------------------------------------------- /json.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/json.sqlite -------------------------------------------------------------------------------- /models/add-mongos.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/package.json -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- 1 | { pkgs }: { 2 | deps = [ 3 | pkgs.nodejs-16_x 4 | ]; 5 | } -------------------------------------------------------------------------------- /webport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/master1ous/SlashCommands-Handler/HEAD/webport.js --------------------------------------------------------------------------------