Pepguy commited on
Commit
7a2bfa1
·
verified ·
1 Parent(s): 2f3bab9

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -9
app.py DELETED
@@ -1,9 +0,0 @@
1
- from fastapi import FastAPI, Request
2
-
3
- app = FastAPI()
4
-
5
- @app.post("/")
6
- async def log_json(request: Request):
7
- data = await request.json()
8
- print("Received JSON:", data)
9
- return {"status": "success", "message": "Data received"}