mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +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
 | |
| }
 | 
