├── .gitignore ├── .vscode └── settings.json ├── COMMANDS.md ├── LICENSE ├── README.md ├── config.example.js ├── createbot.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.enabled": false 3 | } -------------------------------------------------------------------------------- /COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/COMMANDS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/README.md -------------------------------------------------------------------------------- /config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/config.example.js -------------------------------------------------------------------------------- /createbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/createbot.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SourCreamCulture/dogebeatz/HEAD/package.json --------------------------------------------------------------------------------