blob: ebfec76bf8920ca2d6e550a018b7b89ce16bd69a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
from pyrogram import Client
from commands import handle_commands, load_modules, handle_match_scripts
def update_handler(client, update, users, chats):
handle_commands(client, update, users, chats)
handle_match_scripts(client, update, users, chats)
def main():
load_modules()
client = Client(session_name="userbot")
client.set_update_handler(update_handler)
client.start()
client.idle()
if __name__ == '__main__':
main()
|