├── LICENSE ├── README.md ├── config.json ├── package.json └── src ├── index.js ├── slashCommands ├── ask.js ├── panel-ticket.js └── ping.js └── utils └── createCommands.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/slashCommands/ask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/src/slashCommands/ask.js -------------------------------------------------------------------------------- /src/slashCommands/panel-ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/src/slashCommands/panel-ticket.js -------------------------------------------------------------------------------- /src/slashCommands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/src/slashCommands/ping.js -------------------------------------------------------------------------------- /src/utils/createCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dsc-Bots/PruebaBot/HEAD/src/utils/createCommands.js --------------------------------------------------------------------------------