-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
29 lines (25 loc) · 967 Bytes
/
Copy pathmain.py
File metadata and controls
29 lines (25 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#所以我放弃了花里胡哨
from core import bot
from core import module
import time
import toml
import os
verInfo = toml.load("./version.toml")
os.system(' ')
logo = """\033[0;33m
__ ____ __
/'\_/`\ /\ \ __ /\ _`\ /\ \__
/\ \ __ \ \ \___ /\_\ _ __ ___\ \ \L\ \ ___\ \ ,_\
\ \ \__\ \ /'__`\ \ \ _ `\/\ \/\`'__\/ __`\ \ _ <' / __`\ \ \/
\ \ \_/\ \/\ \L\.\_\ \ \ \ \ \ \ \ \//\ \L\ \ \ \L\ \/\ \L\ \ \ \_
\ \_\\\\ \_\ \__/.\_\\\\ \_\ \_\ \_\ \_\\\\ \____/\ \____/\ \____/\ \__\\
\/_/ \/_/\/__/\/_/ \/_/\/_/\/_/\/_/ \/___/ \/___/ \/___/ \/__/
MahiroBot %s by Xuu [https://github.com/XuuChannel/MahiroBot]
\033[0m"""%(verInfo["version"])
print(logo)
del verInfo,logo
b=bot.Bot("./config.toml")
m=module.Module()
while(1):
time.sleep(0.5)
m.moduleProcess(b)