mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
14 lines
230 B
Go
14 lines
230 B
Go
// +build !consulent
|
|
|
|
package structs
|
|
|
|
func (us *Upstream) GetEnterpriseMeta() *EnterpriseMeta {
|
|
return DefaultEnterpriseMeta()
|
|
}
|
|
|
|
func (us *Upstream) DestinationID() ServiceID {
|
|
return ServiceID{
|
|
ID: us.DestinationName,
|
|
}
|
|
}
|