6 lines
163 B
Python
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:
|
|
...
|