curfox_test_api / main.py
dotku's picture
Create main.py
feca41c
raw
history blame
126 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/api/python")
def hello_world():
return {"message": "Hello World"}