work: Реализована работа расписания. Проведен первый тест.

This commit is contained in:
Fedorov Dmitriy
2026-09-13 23:04:35 +03:00
parent 419b8efe33
commit 4c665d9108
9 changed files with 1398 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
from .loader import load_schedule
from .models import (
ScheduleAction,
ScheduleActionType,
ScheduleConfig,
ScheduleOccurrence,
SchedulePoint,
ScheduleResolution,
ScheduledSettings,
)
from .service import ScheduleService
__all__ = [
"load_schedule",
"ScheduleAction",
"ScheduleActionType",
"ScheduleConfig",
"ScheduleOccurrence",
"SchedulePoint",
"ScheduleResolution",
"ScheduledSettings",
"ScheduleService",
]