Files
DEFENDER/defender.py
2025-11-16 19:13:26 +01:00

22 lines
670 B
Python

from core import install
#############################################
# @Version : 6.3 #
# Requierements : #
# Python3.10 or higher #
# SQLAlchemy, requests, psutil #
# unrealircd-rpc-py, pyyaml #
# UnrealIRCD 6.2.2 or higher #
#############################################
try:
# install.update_packages()
from core.loader import Loader
loader = Loader()
loader.Irc.init_irc()
except AssertionError as ae:
print(f'Assertion Error -> {ae}')
except KeyboardInterrupt as k:
# ircInstance.Base.execute_periodic_action()
...