language-learning-app/api/app/outbound/email/protocol.py

7 lines
163 B
Python
Raw Normal View History

from typing import Protocol
class TransactionalEmailClient(Protocol):
async def send_email(self, to: str, subject: str, html_body: str) -> None:
...