blob: d9365ae9aa5214dacf27128931b3dae6d2ae44e6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package controller
import (
"github.com/onap/multicloud-k8s/src/monitor/pkg/controller/resourcebundlestate"
)
func init() {
AddToManagerFuncs = append(AddToManagerFuncs, resourcebundlestate.Add)
AddToManagerFuncs = append(AddToManagerFuncs, resourcebundlestate.AddPodController)
}
|