github.com/hashicorp/vault/sdk@v0.11.0/helper/license/feature.go (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  package license
     5  
     6  // Features is a bitmask of feature flags
     7  type Features uint
     8  
     9  const FeatureNone Features = 0
    10  
    11  func (f Features) HasFeature(flag Features) bool {
    12  	return false
    13  }