mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 19:47:54 +00:00
12 lines
253 B
Go
12 lines
253 B
Go
//go:build !enterprise
|
|
|
|
package server
|
|
|
|
import "github.com/hashicorp/vault/internalshared/configutil"
|
|
|
|
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
|
|
|
|
func entValidateConfig(_ *Config, _ string) []configutil.ConfigError {
|
|
return nil
|
|
}
|