go_winter_work_2025/python/main.py
2025-02-06 19:00:53 +03:00

11 lines
195 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message" : "Hello World"}
@app.delete("/user")
async def root():
return {"message" : "User delete"}