refactor: replace KeyMode with ShouldPersistKey

This commit is contained in:
2025-11-30 15:02:37 +00:00
parent 6984bb209e
commit 1c1392a0a1
5 changed files with 11 additions and 15 deletions

View File

@@ -2,13 +2,6 @@ package blob
type Key string
type KeyMode int
const (
KeyModeStable KeyMode = iota
KeyModeDerived
)
func (k Key) IsNil() bool {
return k == ""
}