Bootstrap fin-hub scaffold from hub-core (CUST-WP-0025-T22/T23)
Add hub-core editable dependency, fin-specific SQLAlchemy models, and smoke tests.
This commit is contained in:
commit
b6993d4a05
10 changed files with 1737 additions and 0 deletions
11
src/fin_hub/models/__init__.py
Normal file
11
src/fin_hub/models/__init__.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
"""Fin-specific SQLAlchemy models (T23 implementation target)."""
|
||||
|
||||
from fin_hub.models.budget import Budget, BurnRate, Commitment, RunwayProjection, TokenSpend
|
||||
|
||||
__all__ = [
|
||||
"Budget",
|
||||
"Commitment",
|
||||
"BurnRate",
|
||||
"RunwayProjection",
|
||||
"TokenSpend",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue