mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-26 17:49:02 -04:00
* Re-enable custom crypto readeres * Bump go.mod to Go 1.26 * dont update this Co-authored-by: Scott Miller <smiller@hashicorp.com>
16 lines
264 B
Go
16 lines
264 B
Go
// Copyright IBM Corp. 2016, 2025
|
|
// 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:]))
|
|
}
|