()
| 27 | |
| 28 | |
| 29 | async def _read_seed_marker() -> str: |
| 30 | storage = get_storage_backend() |
| 31 | if not await storage.exists(SEED_MARKER_KEY): |
| 32 | return "" |
| 33 | return await storage.read_text(SEED_MARKER_KEY, encoding="utf-8", errors="replace") |
| 34 | |
| 35 | |
| 36 | async def _append_seed_marker(line: str) -> None: |
no test coverage detected