feat(frontend+backend): connect api backend with frontend

This commit is contained in:
2025-08-30 21:54:36 -04:00
parent 6063ed62e0
commit 133efdddea
21 changed files with 1202 additions and 91 deletions

7
backend/api/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
"""
FastAPI module for NimbusFlow backend.
"""
from .app import app
__all__ = ["app"]