fastapi / app /main.py
eleeleai's picture
Create app/main.py
4d16670
raw
history blame contribute delete
116 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, World!"}