├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── config.py ├── plugins ├── commands.py └── fonts.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/config.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ns-Bots/Stylish-Text/HEAD/plugins/fonts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tgcrypto 2 | pyrogram==1.3.0 3 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | --------------------------------------------------------------------------------