├── .env.schema ├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── Dockerfile ├── README.md ├── docker-compose.yml ├── package.json ├── sandbox.config.json ├── src ├── bin │ └── deploy-commands.ts ├── bot.ts ├── commands │ ├── amove.ts │ ├── ckick.ts │ ├── cmove.ts │ ├── dmove.ts │ ├── fkick.ts │ ├── fmove.ts │ ├── index.ts │ ├── move.ts │ ├── rmove.ts │ ├── tmove.ts │ ├── ucount.ts │ ├── ymove.ts │ ├── zkick.ts │ └── zmove.ts ├── data-types │ ├── command.ts │ └── guild.ts ├── events │ ├── guildCreate.ts │ ├── index.ts │ ├── interactionCreate.ts │ └── ready.ts ├── sharding.ts └── utils │ ├── db.ts │ ├── helper.ts │ ├── logger.ts │ ├── migrations │ ├── 20220515192620_init.ts │ └── 20220515192621_fix_guild_ids_keys.ts │ └── rabbitmq.ts └── tsconfig.json /.env.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/.env.schema -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.17.0 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/package.json -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /src/bin/deploy-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/bin/deploy-commands.ts -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/commands/amove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/amove.ts -------------------------------------------------------------------------------- /src/commands/ckick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/ckick.ts -------------------------------------------------------------------------------- /src/commands/cmove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/cmove.ts -------------------------------------------------------------------------------- /src/commands/dmove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/dmove.ts -------------------------------------------------------------------------------- /src/commands/fkick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/fkick.ts -------------------------------------------------------------------------------- /src/commands/fmove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/fmove.ts -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/commands/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/move.ts -------------------------------------------------------------------------------- /src/commands/rmove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/rmove.ts -------------------------------------------------------------------------------- /src/commands/tmove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/tmove.ts -------------------------------------------------------------------------------- /src/commands/ucount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/ucount.ts -------------------------------------------------------------------------------- /src/commands/ymove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/ymove.ts -------------------------------------------------------------------------------- /src/commands/zkick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/zkick.ts -------------------------------------------------------------------------------- /src/commands/zmove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/commands/zmove.ts -------------------------------------------------------------------------------- /src/data-types/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/data-types/command.ts -------------------------------------------------------------------------------- /src/data-types/guild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/data-types/guild.ts -------------------------------------------------------------------------------- /src/events/guildCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/events/guildCreate.ts -------------------------------------------------------------------------------- /src/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/events/index.ts -------------------------------------------------------------------------------- /src/events/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/events/interactionCreate.ts -------------------------------------------------------------------------------- /src/events/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/events/ready.ts -------------------------------------------------------------------------------- /src/sharding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/sharding.ts -------------------------------------------------------------------------------- /src/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/utils/db.ts -------------------------------------------------------------------------------- /src/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/utils/helper.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/migrations/20220515192620_init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/utils/migrations/20220515192620_init.ts -------------------------------------------------------------------------------- /src/utils/migrations/20220515192621_fix_guild_ids_keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/utils/migrations/20220515192621_fix_guild_ids_keys.ts -------------------------------------------------------------------------------- /src/utils/rabbitmq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/src/utils/rabbitmq.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winbergoscar0/Moveer/HEAD/tsconfig.json --------------------------------------------------------------------------------