yuuki/main.py

30 lines
691 B
Python
Raw Normal View History

2019-12-31 21:45:14 +08:00
#!/usr/bin/env python3
2019-08-22 18:33:10 +08:00
# -*- 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
2019-08-23 18:12:41 +08:00
Version: v6.5.3
2019-08-23 18:12:41 +08:00
Copyright(c) 2020 Star Inc. All Rights Reserved.
2019-08-23 18:12:41 +08:00
The software licensed under Mozilla Public License Version 2.0
2019-08-22 18:33:10 +08:00
"""
from libs import Yuuki, Yuuki_Config
2019-08-22 18:33:10 +08:00
########################Initializing##########################
config = Yuuki_Config()
2019-08-22 18:33:10 +08:00
Console = Yuuki(config,1)
2019-08-22 18:33:10 +08:00
Console.cleanMyGroupInvitations()
###########################Start!#############################
2019-08-22 18:33:10 +08:00
print("Star Yuuki BOT - Start Successful!")
if __name__ == "__main__":
Console.Main()