mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
15 lines
152 B
Go
15 lines
152 B
Go
package blob
|
|
|
|
type Key string
|
|
|
|
type KeyMode int
|
|
|
|
const (
|
|
KeyModeStable KeyMode = iota
|
|
KeyModeDerived
|
|
)
|
|
|
|
func (k Key) IsNil() bool {
|
|
return k == ""
|
|
}
|