7 lines
152 B
Python
7 lines
152 B
Python
from __future__ import annotations
|
|
|
|
from core.handler import EventDispatcher
|
|
|
|
|
|
def register_web_handlers(dispatcher: EventDispatcher) -> None:
|
|
pass
|