feat(backend): create cli to interact with db

This commit is contained in:
2025-08-27 15:35:09 -04:00
parent be1c729220
commit a7b596e573
14 changed files with 854 additions and 29 deletions

View File

@@ -9,7 +9,7 @@
# ------------------------------------------------------------
# Reexport all dataclass models
from .dataclasses import ( # noqa: F401 (reexported names)
from backend.models.dataclasses import ( # noqa: F401 (reexported names)
AcceptedLog,
Classification,
DeclineLog,
@@ -22,7 +22,7 @@ from .dataclasses import ( # noqa: F401 (reexported names)
)
# Reexport any enums that belong to the model layer
from .enums import ScheduleStatus # noqa: F401
from backend.models.enums import ScheduleStatus # noqa: F401
# Optional: define what ``from myapp.models import *`` should export.
# This is useful for documentation tools and for IDE autocompletion.