7 lines
259 B
Python
7 lines
259 B
Python
|
from .start_handler import register_start_handler
|
||
|
from .audio_handler import register_audio_handlers
|
||
|
|
||
|
def register_all_handlers(dp, redis_service, storage_path: str):
|
||
|
register_start_handler(dp)
|
||
|
register_audio_handlers(dp, redis_service, storage_path)
|