restic-compose-backup/restic_compose_backup/alerts/discord.py

20 lines
414 B
Python
Raw Normal View History

2019-12-04 02:58:27 +00:00
from restic_compose_backup.alerts.base import BaseAlert
class DiscordWebhookAlert(BaseAlert):
name = 'discord_webhook'
def __init__(self):
pass
@classmethod
def create_from_env(self):
return None
@property
def properly_configured(self) -> bool:
return False
2019-12-04 02:58:27 +00:00
def send(self, subject: str = None, attachment: str = None, alert_type: str = None):
2019-12-04 02:58:27 +00:00
pass