mirror of
https://github.com/iio612/DEFENDER.git
synced 2026-02-13 11:14:23 +00:00
27 lines
779 B
Python
27 lines
779 B
Python
from core import installation
|
|
|
|
#############################################
|
|
# @Version : 6.3 #
|
|
# Requierements : #
|
|
# Python3.10 or higher #
|
|
# SQLAlchemy, requests, psutil #
|
|
# unrealircd-rpc-py, pyyaml #
|
|
# UnrealIRCD 6.2.2 or higher #
|
|
#############################################
|
|
|
|
try:
|
|
|
|
# installation.Install()
|
|
|
|
from core.loader import Loader
|
|
loader = Loader()
|
|
loader.Irc.init_irc()
|
|
# from core.irc import Irc
|
|
# ircInstance = Irc(Loader())
|
|
# ircInstance.init_irc(ircInstance)
|
|
|
|
except AssertionError as ae:
|
|
print(f'Assertion Error -> {ae}')
|
|
except KeyboardInterrupt as k:
|
|
# ircInstance.Base.execute_periodic_action()
|
|
... |