fix(backend_server.py): call _initialize_handlers() on init

This commit is contained in:
2026-03-03 20:38:55 +01:00
parent dafe418916
commit e308a07dab

View File

@@ -53,6 +53,7 @@ class BackendServer:
self.message_handlers: dict[ self.message_handlers: dict[
tuple[Category, ActionType], Callable[[Client, Message], None] tuple[Category, ActionType], Callable[[Client, Message], None]
] = {} ] = {}
self._initialize_handlers()
self.running: bool = False self.running: bool = False