odapi/app/__init__.py

6 lines
102 B
Python

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