ai-saas / main.py
gowdaman's picture
new
e63d23a
raw
history blame contribute delete
154 Bytes
from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Welcome to the FastAPI application!"}