├── .env.example ├── .gitattributes ├── .gitignore ├── @types └── index.d.ts ├── LICENSE ├── README.md ├── package.json ├── src ├── assets │ └── emojis │ │ ├── var.png │ │ └── yok.png ├── commands │ ├── bilgi.ts │ ├── eval.ts │ ├── puan.ts │ ├── yardım.ts │ └── yenile.ts ├── config.ts ├── events.ts ├── index.ts └── structures │ └── Command.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/@types/index.d.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/emojis/var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/assets/emojis/var.png -------------------------------------------------------------------------------- /src/assets/emojis/yok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/assets/emojis/yok.png -------------------------------------------------------------------------------- /src/commands/bilgi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/commands/bilgi.ts -------------------------------------------------------------------------------- /src/commands/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/commands/eval.ts -------------------------------------------------------------------------------- /src/commands/puan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/commands/puan.ts -------------------------------------------------------------------------------- /src/commands/yardım.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/commands/yardım.ts -------------------------------------------------------------------------------- /src/commands/yenile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/commands/yenile.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/events.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/structures/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/src/structures/Command.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggsy/Epey-Bot/HEAD/yarn.lock --------------------------------------------------------------------------------