ofx-processor/ofx_processor/senders/__init__.py

9 lines
206 B
Python

from ofx_processor.senders import sms, email, telegram, home_assistant
SENDERS = {
"sms": sms.send,
"email": email.send,
"telegram": telegram.send,
"home_assistant": home_assistant.send,
}