Files
notify/src/application/contracts/i_sender.py
2026-04-16 13:51:10 +03:00

8 lines
206 B
Python

from abc import ABC, abstractmethod
class ISender(ABC):
@abstractmethod
async def send(self, to: str, subject: str, body: str, plain: str | None = None) -> None:
raise NotImplementedError