mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 12:37:59 +00: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
 | 
						|
}
 |