File tree 2 files changed +18
-6
lines changed
2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 15
15
16
16
start_text = """
17
17
18
- __ __ _ __ ____ _
19
- \ \ / / _ _ _ __ ___ (_) / _| _ _ | __ ) ___ | |_
20
- \ V / | | | || '_ ` _ \ | || |_ | | | || _ \ / _ \ | __|
21
- | | | |_| || | | | | || || _|| |_| || |_) || (_) || |_
22
- |_| \__,_||_| |_| |_||_||_| \__, ||____/ \___/ \__|
23
- |___/
18
+ ____ _ _ _ ____ _
19
+ / ___|| | | | / \ _ __ ___ _ __ __ _ | __ ) ___ | |_
20
+ | | _ | |_| | / _ \ | '__| / _ \| '_ \ / _` || _ \ / _ \ | __|
21
+ | |_| || _ | / ___ \ | | | __/| | | || (_| || |_) || (_) || |_
22
+ \____||_| |_|/_/ \_\|_| \___||_| |_| \__,_||____/ \___/ \__|
24
23
25
24
Select an action:
26
25
Original file line number Diff line number Diff line change
1
+ import asyncio
2
+ from contextlib import suppress
3
+
4
+ from bot .utils .launcher import process
5
+
6
+
7
+ async def main ():
8
+ await process ()
9
+
10
+
11
+ if __name__ == '__main__' :
12
+ with suppress (KeyboardInterrupt ):
13
+ asyncio .run (main ())
You can’t perform that action at this time.
0 commit comments