mirror of
https://github.com/iio612/DEFENDER.git
synced 2026-02-13 19:24:23 +00:00
16 lines
427 B
Python
16 lines
427 B
Python
from threading import Timer, Thread, RLock
|
|
from socket import socket
|
|
|
|
class Settings:
|
|
|
|
RUNNING_TIMERS: list[Timer] = []
|
|
RUNNING_THREADS: list[Thread] = []
|
|
RUNNING_SOCKETS: list[socket] = []
|
|
PERIODIC_FUNC: dict[object] = {}
|
|
LOCK: RLock = RLock()
|
|
|
|
CONSOLE: bool = False
|
|
|
|
PROTOCTL_USER_MODES: list[str] = []
|
|
PROTOCTL_PREFIX: list[str] = []
|