TurtleTrade/some架构/notifier.py
2025-04-02 22:55:29 +08:00

7 lines
173 B
Python

class EmailNotifier:
def __init__(self, config):
self.config = config
def send_notification(self, signal):
# 发送邮件通知
pass