20 lines
344 B
Go
20 lines
344 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package pbpeering
|
|
|
|
func (r *GenerateTokenRequest) PartitionOrDefault() string {
|
|
return ""
|
|
}
|
|
|
|
func (p *Peering) PartitionOrDefault() string {
|
|
return ""
|
|
}
|
|
|
|
func (ptb *PeeringTrustBundle) PartitionOrDefault() string {
|
|
return ""
|
|
}
|