mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-29 14:26:35 +08:00
11 lines
161 B
Go
11 lines
161 B
Go
package schedulingconfigs
|
|
|
|
// 候选对象接口
|
|
type CandidateInterface interface {
|
|
// 权重
|
|
CandidateWeight() uint
|
|
|
|
// 代号
|
|
CandidateCodes() []string
|
|
}
|