15 lines
293 B
Python
15 lines
293 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):
|
||
|
debug(f"Used a webhook call without webhook url with {args}")
|
||
|
|