File size: 193 Bytes
0b79e8d
2a8047a
0b79e8d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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"}