Files
project-lyra/cortex/main.py
2025-11-26 18:01:48 -05:00

6 lines
117 B
Python

from fastapi import FastAPI
from router import cortex_router
app = FastAPI()
app.include_router(cortex_router)