15 lines
240 B
Python
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"
|