mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-29 17:52:32 +00:00 
			
		
		
		
	 904c08e1e4
			
		
	
	904c08e1e4
	
	
	
		
			
			This code only executes when the Vault version is <1.11, so is now dead code and can be removed safely.
		
			
				
	
	
		
			15 lines
		
	
	
		
			232 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			232 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) HashiCorp, Inc.
 | |
| // SPDX-License-Identifier: BUSL-1.1
 | |
| 
 | |
| package main // import "github.com/hashicorp/vault"
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 
 | |
| 	"github.com/hashicorp/vault/command"
 | |
| )
 | |
| 
 | |
| func main() {
 | |
| 	os.Exit(command.Run(os.Args[1:]))
 | |
| }
 |