Add database and FUSE mapping

This commit is contained in:
Andrew Mulbrook 2026-03-16 22:45:27 -05:00
parent 96c9e62354
commit 2cfe32b333
5 changed files with 425 additions and 3 deletions

View file

@ -47,6 +47,10 @@ class Tree(Protocol):
"""Create a new Tree with the given name."""
...
def list(self) -> dict[str, int]:
"""Return all entries as {name: object_id}."""
...
class BlobNote(Note, Blob):
"""Blob Note"""