blob: c709dfd4eabe692d354b28fc29909898de4cf735 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package controller
import (
"monitor/pkg/controller/resourcebundlestate"
)
func init() {
AddToManagerFuncs = append(AddToManagerFuncs, resourcebundlestate.Add)
AddToManagerFuncs = append(AddToManagerFuncs, resourcebundlestate.AddPodController)
}
|