mirror of
https://github.com/star-inc/star_yuuki_bot.git
synced 2024-11-13 03:25:12 +08:00
29 lines
689 B
Python
Executable file
29 lines
689 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
|
|
|
|
########################Initializing##########################
|
|
|
|
config = Yuuki_Config()
|
|
|
|
Console = Yuuki(config)
|
|
Console.cleanMyGroupInvitations()
|
|
|
|
###########################Start!#############################
|
|
|
|
print("Star Yuuki BOT - Start Successful!")
|
|
|
|
if __name__ == "__main__":
|
|
Console.Main()
|