Duncan Tourolle fe140ba91f
Some checks failed
Python CI / test (push) Failing after 4m11s
refactor applications to delegate responsibilites
2025-11-08 19:46:49 +01:00

11 lines
220 B
Python

"""
Handlers module for dreader application.
This module contains interaction handlers:
- GestureRouter: Routes touch events to appropriate handlers
"""
from .gestures import GestureRouter
__all__ = ['GestureRouter']