Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
|
@@ -12,7 +12,9 @@ SUPABASE_API_KEY = os.getenv("SUPABASE_API_KEY")
|
|
| 12 |
@app.post("/webhook")
|
| 13 |
async def receive_webhook(request: Request):
|
| 14 |
payload = await request.json()
|
|
|
|
| 15 |
print("📥 Webhook received:")
|
|
|
|
| 16 |
|
| 17 |
gmt_plus_3 = timezone(timedelta(hours=3))
|
| 18 |
|
|
|
|
| 12 |
@app.post("/webhook")
|
| 13 |
async def receive_webhook(request: Request):
|
| 14 |
payload = await request.json()
|
| 15 |
+
|
| 16 |
print("📥 Webhook received:")
|
| 17 |
+
print(f"New resonse: {payload}")
|
| 18 |
|
| 19 |
gmt_plus_3 = timezone(timedelta(hours=3))
|
| 20 |
|