mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-08 15:47:00 +02:00
13 lines
227 B
Go
13 lines
227 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 IsMultisealSupported() bool {
|
|
return false
|
|
}
|