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

6 lines
163 B
Python

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