vault/main.go
2026-05-11 04:50:47 +00:00

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:]))
}