senderbot/modules/mailing.py

16 lines
261 B
Python
Raw Normal View History

2024-06-09 14:20:48 +03:00
from abc import abstractmethod
class MailingMethod:
@abstractmethod
def send(self): ...
class SMTPMAiling(MailingMethod):
def send(self):
return "SMTP"
class WhatsAppMailing(MailingMethod):
def send(self):
return "WhatsApp"