feat: finish implementing vfs

This commit is contained in:
2025-11-27 22:44:13 +00:00
parent e32e00a230
commit 797b40a35c
2 changed files with 125 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
package blob
type Key string
func (k Key) IsNil() bool {
return k == ""
}