mirror of
https://github.com/TheCaduceus/FileStreamBot.git
synced 2026-01-15 16:33:25 -03:00
8 lines
209 B
Python
8 lines
209 B
Python
from bot import TelegramBot, logger
|
|
from bot.server import run_server
|
|
|
|
if __name__ == '__main__':
|
|
logger.info('Initializing...')
|
|
TelegramBot.loop.create_task(run_server())
|
|
TelegramBot.run()
|