mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			189 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			189 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !enterprise
 | |
| 
 | |
| package logical
 | |
| 
 | |
| type entReq struct {
 | |
| 	ControlGroup interface{}
 | |
| }
 | |
| 
 | |
| func (r *Request) EntReq() *entReq {
 | |
| 	return &entReq{}
 | |
| }
 | |
| 
 | |
| func (r *Request) SetEntReq(*entReq) {
 | |
| }
 | 
