vault/main.go
Christopher Swenson 904c08e1e4
Remove runtime patch for SHA1 support in X.509 certs (#24243)
This code only executes when the Vault version is <1.11,
so is now dead code and can be removed safely.
2023-11-27 09:11:01 -08:00

15 lines
232 B
Go

// Copyright (c) HashiCorp, Inc.
// 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:]))
}