Spaces:
Runtime error
Runtime error
File size: 211 Bytes
09f1b19 | 1 2 3 4 5 6 7 8 9 10 11 | """Diary module interface."""
from __future__ import annotations
from typing import Protocol
class DiaryInterface(Protocol):
async def write_entry(self, category: str, content: str) -> None:
...
|