odapi/app/__init__.py

6 lines
78 B
Python
Raw Normal View History

from fastapi import FastAPI
2020-03-23 21:17:16 +01:00
app = FastAPI()
2020-03-23 21:17:16 +01:00
2020-07-24 19:27:15 +02:00
from app import routes, schemas