mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 06:09:39 +08:00
7 lines
206 B
Go
7 lines
206 B
Go
package mcclient
|
|
|
|
type IServiceCatalog interface {
|
|
GetServiceURL(service, region, zone, endpointType string) (string, error)
|
|
GetServiceURLs(service, region, zone, endpointType string) ([]string, error)
|
|
}
|