2024-02-27 14:52:55 +01:00
|
|
|
from modules.Tools.logger import debug
|
|
|
|
|
|
|
|
|
|
|
|
class DiscordConfig:
|
|
|
|
def __init__(self):
|
|
|
|
self.avatar_url = ""
|
|
|
|
self.wh_link = None
|
|
|
|
self.wh = None
|
|
|
|
|
|
|
|
|
|
|
|
class FakeWebHook:
|
2024-04-10 12:15:14 +02:00
|
|
|
def send(self, *args, **kwargs):
|
|
|
|
debug(f"Used a webhook call without webhook url with {args} {kwargs}")
|
2024-02-27 14:52:55 +01:00
|
|
|
|