mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-23 17:11:21 +08:00
10 lines
238 B
Go
10 lines
238 B
Go
package common
|
|
|
|
import "context"
|
|
|
|
type ManagerAPI interface {
|
|
GetHealthyURLs(ctx context.Context) []string
|
|
GetMetrics(ctx context.Context, url string) (int, int, int)
|
|
GetRemoteMetrics(ctx context.Context, url string) (int, int, int)
|
|
}
|