MarioPrzBasto's picture
Add application file
51c00f9
raw
history blame
153 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/", tags=["Home"])
def api_home():
return {'detail': 'Welcome to FastAPI TextGen Tutorial!'}