feat(phase-4a): backend skeleton, auth, health, tests

This commit is contained in:
CRM Bot
2026-06-03 20:52:01 +00:00
commit 955607f730
39 changed files with 2709 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
"""SQLAlchemy ORM models for the CRM system."""
from app.models.base import Base, OrgScopedMixin, SoftDeleteMixin, TimestampMixin
from app.models.org import Org
from app.models.user import User, UserRole
__all__ = [
"Base",
"Org",
"OrgScopedMixin",
"SoftDeleteMixin",
"TimestampMixin",
"User",
"UserRole",
]