15 lines
312 B
Python
15 lines
312 B
Python
from modules.Tools.logger import debug
|
|
|
|
|
|
class DiscordConfig:
|
|
def __init__(self):
|
|
self.avatar_url = ""
|
|
self.wh_link = None
|
|
self.wh = None
|
|
|
|
|
|
class FakeWebHook:
|
|
def send(self, *args, **kwargs):
|
|
debug(f"Used a webhook call without webhook url with {args} {kwargs}")
|
|
|