demo version prepped

This commit is contained in:
2026-04-01 12:40:40 -04:00
parent d44e5f0ad1
commit ed319a6423
62 changed files with 8362 additions and 0 deletions

7
backend/main.py Normal file
View File

@@ -0,0 +1,7 @@
from logger import setup_logger
setup_logger()
from fastapi import FastAPI
from api.v1 import create_app
api: FastAPI = create_app()