10 lines
196 B
Python
10 lines
196 B
Python
from fastapi import FastAPI
|
|
|
|
from app.routers import api_router
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
app = FastAPI(title="Math Problems Structure")
|
|
app.include_router(api_router)
|
|
return app
|