aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/controller/add_pod.go
blob: cc5f562056b33010575718ea607865d676523d87 (plain)
1
2
3
4
5
6
7
8
9
10
package controller

import (
	"ovn4nfv-k8s-plugin/pkg/controller/pod"
)

func init() {
	// AddToManagerFuncs is a list of functions to create controllers and add them to a manager.
	AddToManagerFuncs = append(AddToManagerFuncs, pod.Add)
}