fastapi1 / app.py
Kabila22's picture
first commit
0b79e8d
raw
history blame
196 Bytes
from fastapi import FastAPI
from app.routes import continent_routes
app = FastAPI()
app.include_router(continent_routes.router)
@app.get("/")
def home():
return {"message": "Welcome home"}