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