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:
tegwick 2026-07-08 00:50:24 +02:00
commit b6993d4a05
10 changed files with 1737 additions and 0 deletions

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