This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeNode/internal/configs/serverconfigs/scheduling/candidate.go
T
2020-09-10 21:04:57 +08:00

11 lines
154 B
Go

package scheduling
// 候选对象接口
type CandidateInterface interface {
// 权重
CandidateWeight() uint
// 代号
CandidateCodes() []string
}