├── .github └── workflows │ └── deploy.yml ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── requirements.txt └── runtime.txt /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Gorn/Spotify-Loader/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Gorn/Spotify-Loader/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Gorn/Spotify-Loader/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Gorn/Spotify-Loader/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Gorn/Spotify-Loader/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-Gorn/Spotify-Loader/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.2 --------------------------------------------------------------------------------