├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── commands └── music │ ├── loop.js │ ├── play.js │ ├── skip.js │ └── stop.js ├── events └── message.js ├── handlers └── command.js ├── index.js └── package.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: node index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/README.md -------------------------------------------------------------------------------- /commands/music/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/commands/music/loop.js -------------------------------------------------------------------------------- /commands/music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/commands/music/play.js -------------------------------------------------------------------------------- /commands/music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/commands/music/skip.js -------------------------------------------------------------------------------- /commands/music/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/commands/music/stop.js -------------------------------------------------------------------------------- /events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/events/message.js -------------------------------------------------------------------------------- /handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/handlers/command.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SrGobi/EspRadio-OnlyDiscord/HEAD/package.json --------------------------------------------------------------------------------