Files
Meppo/Meppo.py

22 lines
587 B
Python
Raw Normal View History

2022-03-22 18:03:05 +08:00
#!/usr/bin/env python3
# _*_ coding:utf-8 _*_
'''
____ _ _ _ _ __ __ _
| _ \ __ _| |__ | |__ (_) |_| \/ | __ _ ___| | __
| |_) / _` | '_ \| '_ \| | __| |\/| |/ _` / __| |/ /
| _ < (_| | |_) | |_) | | |_| | | | (_| \__ \ <
|_| \_\__,_|_.__/|_.__/|_|\__|_| |_|\__,_|___/_|\_\
'''
2023-01-16 14:30:35 +08:00
from time import sleep
from Tools.ReBuild import Rebuild
Rebuild()
sleep(1)
2022-03-22 18:03:05 +08:00
from Config.config_banner import Banner
from Framework.console_main import Console
if __name__ == '__main__':
Banner()
Console()