added Contact api and data model

This commit is contained in:
2026-01-11 18:37:40 -05:00
parent 8bbcd37933
commit 8afa4fce6c
8 changed files with 838 additions and 70 deletions

View File

@@ -3,6 +3,20 @@
from __future__ import annotations
from python.orm.base import RichieBase, TableBase
from python.orm.temp import Temp
from python.orm.contact import (
Contact,
ContactNeed,
ContactRelationship,
Need,
RelationshipType,
)
__all__ = ["RichieBase", "TableBase", "Temp"]
__all__ = [
"Contact",
"ContactNeed",
"ContactRelationship",
"Need",
"RelationshipType",
"RichieBase",
"TableBase",
]