7 lines
173 B
Python
7 lines
173 B
Python
class EmailNotifier:
|
|
def __init__(self, config):
|
|
self.config = config
|
|
|
|
def send_notification(self, signal):
|
|
# 发送邮件通知
|
|
pass |