mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	 d21e60eaa9
			
		
	
	d21e60eaa9
	
	
	
		
			
			* Move config validation code to it's own, non ENT specific file * Fix imports * import order
		
			
				
	
	
		
			18 lines
		
	
	
		
			308 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			308 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !enterprise
 | |
| 
 | |
| package configutil
 | |
| 
 | |
| import (
 | |
| 	"github.com/hashicorp/hcl/hcl/ast"
 | |
| )
 | |
| 
 | |
| type EntSharedConfig struct{}
 | |
| 
 | |
| func (ec *EntSharedConfig) ParseConfig(list *ast.ObjectList) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func ParseEntropy(result *SharedConfig, list *ast.ObjectList, blockName string) error {
 | |
| 	return nil
 | |
| }
 |