forked from CodeCow/NGCBot
22 lines
1.5 KiB
Python
22 lines
1.5 KiB
Python
from BotServer.MainServer import MainServer
|
|
from cprint import cprint
|
|
|
|
Bot_Logo = """
|
|
███▄▄▄▄ ▄██████▄ ▄████████ ▀█████████▄ ▄██████▄ ███
|
|
███▀▀▀██▄ ███ ███ ███ ███ ███ ███ ███ ███ ▀█████████▄
|
|
███ ███ ███ █▀ ███ █▀ ███ ███ ███ ███ ▀███▀▀██
|
|
███ ███ ▄███ ███ ▄███▄▄▄██▀ ███ ███ ███ ▀
|
|
███ ███ ▀▀███ ████▄ ███ ▀▀███▀▀▀██▄ ███ ███ ███
|
|
███ ███ ███ ███ ███ █▄ ███ ██▄ ███ ███ ███
|
|
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
|
|
▀█ █▀ ████████▀ ████████▀ ▄█████████▀ ▀██████▀ ▄████▀
|
|
Version: V2.1
|
|
Author: 久安信息有限公司旗下-NGC660安全实验室(eXM/云山)
|
|
|
|
"""
|
|
|
|
if __name__ == '__main__':
|
|
cprint.info(Bot_Logo.strip())
|
|
Ms = MainServer()
|
|
Ms.processMsg()
|