mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-11 00:57:00 +02:00
13 lines
240 B
Go
13 lines
240 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !enterprise
|
|
|
|
package server
|
|
|
|
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
|
|
|
|
func IsSealHABetaEnabled() (bool, error) {
|
|
return false, nil
|
|
}
|