mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-07 07:07:05 +02:00
15 lines
324 B
Go
15 lines
324 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//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
|
|
}
|