0b79e8d
1
2
3
4
5
6
7
8
9
10
11
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"}