2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2020-01-24 15:04:58 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
func (us *Upstream) GetEnterpriseMeta() *EnterpriseMeta {
|
2021-07-22 18:20:45 +00:00
|
|
|
return DefaultEnterpriseMetaInDefaultPartition()
|
2020-01-24 15:04:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (us *Upstream) DestinationID() ServiceID {
|
|
|
|
return ServiceID{
|
|
|
|
ID: us.DestinationName,
|
|
|
|
}
|
|
|
|
}
|
2021-04-15 19:54:40 +00:00
|
|
|
|
2022-01-20 16:12:04 +00:00
|
|
|
func (us *Upstream) enterpriseStringPrefix() string {
|
2021-12-13 17:43:33 +00:00
|
|
|
return ""
|
2021-04-15 19:54:40 +00:00
|
|
|
}
|