chore(handler/__init__.py): add AckHandler to __all__

This commit is contained in:
2026-03-03 20:56:18 +01:00
parent 97fc17fbb3
commit e54cc479b5

View File

@@ -1,4 +1,5 @@
from .base_handler import BaseHandler
from .hello_handler import HelloHandler
from .ack_handler import AckHandler
__all__ = ["BaseHandler", "HelloHandler"]
__all__ = ["BaseHandler", "HelloHandler", "AckHandler"]