mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	Add a go:generate helper called stubmaker, which generates appropriate stubs on ent based on oss stubs, but only when needed (i.e. real ent funcs haven't been added yet.)
		
			
				
	
	
		
			13 lines
		
	
	
		
			445 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			445 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) HashiCorp, Inc.
 | 
						|
// SPDX-License-Identifier: MPL-2.0
 | 
						|
 | 
						|
//go:build !enterprise
 | 
						|
 | 
						|
package server
 | 
						|
 | 
						|
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
 | 
						|
 | 
						|
func addExpectedEntConfig(c *Config, sentinelModules []string)                         {}
 | 
						|
func addExpectedDefaultEntConfig(c *Config)                                            {}
 | 
						|
func addExpectedEntSanitizedConfig(c map[string]interface{}, sentinelModules []string) {}
 |