vault/main.go
Vault Automation 2b1f2187f4
Re-enable custom crypto readers (#11587) (#13400)
* Re-enable custom crypto readeres

* Bump go.mod to Go 1.26

* dont update this

Co-authored-by: Scott Miller <smiller@hashicorp.com>
2026-05-08 14:12:04 -05:00

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