open-vault/sdk/helper/license/feature.go
2019-04-12 17:54:35 -04:00

11 lines
178 B
Go

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
}