28 lines
858 B
Python
28 lines
858 B
Python
#region Imports
|
|
import tomllib
|
|
|
|
from utils.Logger import Log
|
|
from core import PluginHandler
|
|
|
|
#endregion
|
|
with open("config.toml", "rb") as f:
|
|
data = tomllib.load(f)
|
|
|
|
if __name__ == "__main__":
|
|
Log.v("""
|
|
|
|
o o 8
|
|
8b 8 8
|
|
8`b 8 .oPYo. o o .oPYo. 8
|
|
8 `b 8 8 8 Y. .P 8oooo8 8
|
|
8 `b8 8 8 `b..d' 8. 8
|
|
8 `8 `YooP' `YP' `Yooo' 8
|
|
..:::..:.....:::...:::.....:..
|
|
::::::::::::::::::::::::::::::
|
|
|
|
Product - ANTI-ABUSE
|
|
Release - {}
|
|
License - GNU GENERAL PUBLIC LICENSE, Version 3
|
|
|
|
""".format(data['ver']))
|
|
PluginHandler().app_run() |