mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-12 13:01:10 +01:00
* Ent only ADP Metrics * Added change log * Changed changelog name * Restored previous impl * Moved to mount_util * Change impl * Add same file * Moved to registry_util * Edited corehelpers mock registry * Edited chagnelog * Edited changelog * Edited build tag * Added back function * Delete core.go.rej * Edited mount * Changed spacing
11 lines
292 B
Go
11 lines
292 B
Go
//go:build !enterprise
|
|
|
|
package builtinplugins
|
|
|
|
import "github.com/hashicorp/vault/sdk/helper/consts"
|
|
|
|
// IsBuiltinEntPlugin checks whether the plugin is an enterprise only builtin plugin
|
|
func (r *registry) IsBuiltinEntPlugin(name string, pluginType consts.PluginType) bool {
|
|
return false
|
|
}
|