├── .dockerignore ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── commands ├── clear.js ├── join.js ├── loop.js ├── play.js ├── queue.js ├── skip.js ├── stop.js └── volume.js ├── comments.txt ├── config.example.js ├── events ├── messageCreate.js └── ready.js ├── index.js ├── package.json ├── strings.json ├── utils.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/README.md -------------------------------------------------------------------------------- /commands/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/clear.js -------------------------------------------------------------------------------- /commands/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/join.js -------------------------------------------------------------------------------- /commands/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/loop.js -------------------------------------------------------------------------------- /commands/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/play.js -------------------------------------------------------------------------------- /commands/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/queue.js -------------------------------------------------------------------------------- /commands/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/skip.js -------------------------------------------------------------------------------- /commands/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/stop.js -------------------------------------------------------------------------------- /commands/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/commands/volume.js -------------------------------------------------------------------------------- /comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/comments.txt -------------------------------------------------------------------------------- /config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/config.example.js -------------------------------------------------------------------------------- /events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/events/messageCreate.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/events/ready.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/package.json -------------------------------------------------------------------------------- /strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/strings.json -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDiscorders/SelfRythm/HEAD/yarn.lock --------------------------------------------------------------------------------