mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 23:57:01 +02: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
|
|
}
|