10 lines
176 B
Python
10 lines
176 B
Python
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
import uvicorn
|
|
from controllers import album
|
|
|
|
# Initialize the app
|
|
app = FastAPI()
|
|
|
|
app.include_router(album.router)
|