uncloud/uncloud_v5/frontend/main.py
2026-06-13 07:29:34 +02:00

15 lines
240 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return "Text1"
# return {"message": "Hello World"}
@app.post("/clicked")
async def clicky():
#return {"message": "Hello World"}
return "Text2"