Legacy removals, code restructuring, add send_... functions and better help

This commit is contained in:
2024-08-10 01:36:54 +02:00
parent 183b8c60cd
commit 6ebc68127e
32 changed files with 512 additions and 351 deletions

View File

@ -1,7 +1,7 @@
# ================================== #
# WinDog multi-purpose chatbot #
# Licensed under AGPLv3 by OctoSpacc #
# ================================== #
# ==================================== #
# WinDog multi-purpose chatbot #
# Licensed under AGPLv3 by OctoSpacc #
# ==================================== #
from types import SimpleNamespace
@ -22,6 +22,9 @@ class SafeNamespace(DictNamespace):
# we just use these for type hinting and clearer code:
class CommandData(SafeNamespace):
pass
class EventContext(SafeNamespace):
pass