mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-20 10:11:34 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
15 lines
233 B
Go
15 lines
233 B
Go
// Copyright IBM Corp. 2016, 2025
|
|
// 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:]))
|
|
}
|