mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-05 22:27:03 +02: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:]))
|
|
}
|