mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-12 16:16:47 +02:00
17 lines
258 B
Go
17 lines
258 B
Go
// Copyright IBM Corp. 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:debug cryptocustomrand=1
|
|
|
|
package main // import "github.com/hashicorp/vault"
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/hashicorp/vault/command"
|
|
)
|
|
|
|
func main() {
|
|
os.Exit(command.Run(os.Args[1:]))
|
|
}
|