8 lines
158 B
Python
8 lines
158 B
Python
|
|
"""
|
||
|
|
Scheduled Jobs Package
|
||
|
|
Contains predefined task implementations and registry
|
||
|
|
"""
|
||
|
|
from app.jobs.registry import task_registry
|
||
|
|
|
||
|
|
__all__ = ["task_registry"]
|