Files

7 lines
163 B
Python
Raw Permalink Normal View History

2024-11-20 15:29:44 +05:30
from bot import TelegramBot
2023-11-09 14:00:00 +05:30
from bot.server import server
2023-11-05 22:02:58 +05:30
if __name__ == '__main__':
2023-11-09 14:00:00 +05:30
TelegramBot.loop.create_task(server.serve())
2024-11-20 15:29:44 +05:30
TelegramBot.run()