6 lines
117 B
Python
6 lines
117 B
Python
from fastapi import FastAPI
|
|
from router import cortex_router
|
|
|
|
app = FastAPI()
|
|
|
|
app.include_router(cortex_router) |