Files
drive/apps/backend/internal/blob/key.go

15 lines
152 B
Go
Raw Normal View History

2025-11-26 20:11:12 +00:00
package blob
type Key string
2025-11-27 22:44:13 +00:00
2025-11-28 22:31:00 +00:00
type KeyMode int
const (
KeyModeStable KeyMode = iota
KeyModeDerived
)
2025-11-27 22:44:13 +00:00
func (k Key) IsNil() bool {
return k == ""
}