This commit is contained in:
2024-07-05 10:26:49 +03:00
parent 36b6dd279a
commit f36e82c5c0

View File

@@ -24,6 +24,13 @@ app = FastAPI(
)
@app.get(
'/ping'
)
async def ping():
return {'pong': True}
@app.post(
'/update',
response_model=UpdateResponse