11 lines
220 B
Python
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']
|