Files
New-planet-api/new-planet-backend/app/crud/__init__.py
2025-12-13 14:39:50 +03:00

14 lines
243 B
Python

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",
]