python-webservice/app.py

11 lines
177 B
Python
Raw Normal View History

2022-10-14 17:52:31 +00:00
from fastapi import FastAPI
from pydantic import BaseModel
import uvicorn
2022-10-14 18:16:52 +00:00
2022-10-14 18:01:04 +00:00
from controllers import album
2022-10-14 17:52:31 +00:00
# Initialize the app
app = FastAPI()
2022-10-14 18:01:04 +00:00
app.include_router(album.router)