mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-23 13:00:18 +08:00
13 lines
271 B
Go
13 lines
271 B
Go
package plugin
|
|
|
|
import (
|
|
"yunion.io/x/onecloud/pkg/scheduler/core"
|
|
)
|
|
|
|
type BasePlugin struct{}
|
|
|
|
// Customize priority
|
|
func (p BasePlugin) OnPriorityEnd(u *core.Unit, c core.Candidater) {}
|
|
|
|
func (p BasePlugin) OnSelectEnd(u *core.Unit, c core.Candidater, count int64) {}
|