├── COPYING ├── Procfile ├── README.md ├── app.json ├── bot.py ├── requirements.txt ├── runtime.txt └── sample_config.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-of-tg/TTS-BOT/HEAD/COPYING -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-of-tg/TTS-BOT/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-of-tg/TTS-BOT/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-of-tg/TTS-BOT/HEAD/bot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-of-tg/TTS-BOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jack-of-tg/TTS-BOT/HEAD/sample_config.py --------------------------------------------------------------------------------