Cortex rework in progress

This commit is contained in:
serversdwn
2025-11-26 18:01:48 -05:00
parent a087de9790
commit 734999e8bb
8 changed files with 468 additions and 593 deletions

View File

@@ -1,6 +1,6 @@
from fastapi import FastAPI
from router import router
from router import cortex_router
app = FastAPI()
app.include_router(router)
app.include_router(cortex_router)