├── .deepsource.toml ├── .gitignore ├── LICENSE ├── commands └── admin │ └── ticket.js ├── config.json ├── events ├── client │ ├── interactionCreate.js │ └── ready.js └── ticket │ └── ticketSystem.js ├── handler └── index.js ├── index.js ├── package.json └── readme.md /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/LICENSE -------------------------------------------------------------------------------- /commands/admin/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/commands/admin/ticket.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/config.json -------------------------------------------------------------------------------- /events/client/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/events/client/interactionCreate.js -------------------------------------------------------------------------------- /events/client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/events/client/ready.js -------------------------------------------------------------------------------- /events/ticket/ticketSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/events/ticket/ticketSystem.js -------------------------------------------------------------------------------- /handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/handler/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3mq/TicketBot/HEAD/readme.md --------------------------------------------------------------------------------