17 lines
274 B
Go
17 lines
274 B
Go
|
//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 ""
|
||
|
}
|