mirror of
https://github.com/wolfswolke/DeathGarden_API_Rebirth.git
synced 2026-08-26 02:54:00 -05:00
Updated webhook_handler.pyto support lists
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import requests
|
||||
|
||||
|
||||
def discord_webhook(url, data):
|
||||
requests.post(url, json=data)
|
||||
def discord_webhook(urls, data):
|
||||
for url in urls:
|
||||
requests.post(url, json=data)
|
||||
|
||||
Reference in New Issue
Block a user