odapi/app/__init__.py

6 lines
102 B
Python
Raw Normal View History

from fastapi import FastAPI
2020-09-03 18:31:52 +02:00
from app.routes import router
2020-03-23 21:17:16 +01:00
app = FastAPI()
2020-09-03 18:31:52 +02:00
app.include_router(router)