feat: impl upload api endpoints

This commit is contained in:
2025-11-29 17:25:11 +00:00
parent 6aee150a59
commit 39824e45d9
5 changed files with 155 additions and 22 deletions

View File

@@ -15,6 +15,10 @@ type BlobKeyResolver interface {
type FlatKeyResolver struct{}
func NewFlatKeyResolver() *FlatKeyResolver {
return &FlatKeyResolver{}
}
func (r *FlatKeyResolver) KeyMode() blob.KeyMode {
return blob.KeyModeStable
}