feat: impl fs backed blob store

This commit is contained in:
2025-11-26 20:11:12 +00:00
parent 834517f3c0
commit c0e2f7ff37
4 changed files with 119 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package blob
import "errors"
var (
ErrConflict = errors.New("key already used for a different blob")
ErrNotFound = errors.New("key not found")
)