open-vault/helper/license/feature.go
2018-09-17 23:03:00 -04:00

13 lines
201 B
Go

// +build !enterprise
package license
// Features is a bitmask of feature flags
type Features uint
const FeatureNone Features = 0
func (f Features) HasFeature(flag Features) bool {
return false
}