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