star_yuuki_bot/main.py
SuperSonic d5ea8c3006 Update
2020-02-09 17:09:13 +08:00

23 lines
529 B
Python
Executable file

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Star Yuuki Bot - Yuuki
~~~~~~~~~~~
This is a main program in SYB.
It`s belong to Star Yuuki(pYthon) Bot Project of Star Neptune Bot
Version: v6.5.3
Copyright(c) 2020 Star Inc. All Rights Reserved.
The software licensed under Mozilla Public License Version 2.0
"""
from libs import Yuuki, Yuuki_Config
config = Yuuki_Config()
Console = Yuuki(config)
if __name__ == "__main__":
print("Star Yuuki BOT - Start Successful!")
Console.main()