File size: 153 Bytes
973182c
 
 
 
51c00f9
 
 
1
2
3
4
5
6
7
8
from fastapi import FastAPI

app = FastAPI()

@app.get("/", tags=["Home"])
def api_home():
    return {'detail': 'Welcome to FastAPI TextGen Tutorial!'}