feat: Added the utils module and classes useful for managing task and event frequency.
This commit is contained in:
11
app/utils/__init__.py
Normal file
11
app/utils/__init__.py
Normal file
@@ -0,0 +1,11 @@
|
||||
"""
|
||||
Utils package for MokPyo application.
|
||||
|
||||
- Expose utility classes for easy imports
|
||||
"""
|
||||
|
||||
from .frequency import Frequency, Cron, DayInterval, WeekInterval, MonthInterval, Interval
|
||||
|
||||
__all__ = [
|
||||
"Frequency", "Cron", "DayInterval", "WeekInterval", "MonthInterval", "Interval"
|
||||
]
|
||||
Reference in New Issue
Block a user