Files
MsRewards/modules/Classes/DiscordConfig.py
2024-02-27 14:52:55 +01:00

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}")