27bb03bbc0
* adding copyright header * fix fmt and a test
20 lines
362 B
Go
20 lines
362 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !enterprise
|
|
|
|
package replication
|
|
|
|
import "github.com/hashicorp/vault/sdk/helper/consts"
|
|
|
|
type Cluster struct {
|
|
State consts.ReplicationState
|
|
ClusterID string
|
|
PrimaryClusterAddr string
|
|
}
|
|
|
|
type Clusters struct {
|
|
DR *Cluster
|
|
Performance *Cluster
|
|
}
|