├── .dockerignore ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── etc ├── font.otf ├── foreground.png ├── foreground_square.png └── tg_vc_bot.png ├── functions.py ├── generate_string_session.py ├── main.py ├── misc.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── thumbnail.jpg /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/app.json -------------------------------------------------------------------------------- /etc/font.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/etc/font.otf -------------------------------------------------------------------------------- /etc/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/etc/foreground.png -------------------------------------------------------------------------------- /etc/foreground_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/etc/foreground_square.png -------------------------------------------------------------------------------- /etc/tg_vc_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/etc/tg_vc_bot.png -------------------------------------------------------------------------------- /functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/functions.py -------------------------------------------------------------------------------- /generate_string_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/generate_string_session.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/main.py -------------------------------------------------------------------------------- /misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/misc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.4 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/sample_config.py -------------------------------------------------------------------------------- /thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucifer7535/Telegram_VC_Bot/HEAD/thumbnail.jpg --------------------------------------------------------------------------------