(self, key: str, content: str, encoding: str = "utf-8")
| 72 | raise NotImplementedError |
| 73 | |
| 74 | async def write_text(self, key: str, content: str, encoding: str = "utf-8") -> None: |
| 75 | await self.write_bytes(key, content.encode(encoding), content_type="text/plain; charset=utf-8") |
| 76 | |
| 77 | async def delete(self, key: str) -> None: |
| 78 | raise NotImplementedError |