TurtleTrade/some架构/notifier.py

7 lines
173 B
Python
Raw Normal View History

2025-04-02 22:55:29 +08:00
class EmailNotifier:
def __init__(self, config):
self.config = config
def send_notification(self, signal):
# 发送邮件通知
pass