This commit is contained in:
2025-12-13 14:39:50 +03:00
commit b666cdcb95
79 changed files with 3081 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from app.crud.user import user, CRUDUser
from app.crud.schedule import schedule, CRUDSchedule
from app.crud.task import task, CRUDTask
__all__ = [
"user",
"CRUDUser",
"schedule",
"CRUDSchedule",
"task",
"CRUDTask",
]