You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
297 B

"""
定时任务模块
"""
from app.tasks.sync_tasks import (
start_scheduler,
stop_scheduler,
get_scheduler,
sync_kline_task,
sync_realtime_task
)
__all__ = [
'start_scheduler',
'stop_scheduler',
'get_scheduler',
'sync_kline_task',
'sync_realtime_task'
]