mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	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:]))
 | 
						|
}
 |