Mr-Help commited on
Commit
2a05c29
·
verified ·
1 Parent(s): 262c0c2

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -0
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