blob: 58c394095218da3bcc850e243a25152e7f15c04a (
plain)
1
2
3
4
5
6
7
8
9
10
|
package controller
import (
"ovn4nfv-k8s-plugin/pkg/controller/providernetwork"
)
func init() {
// AddToManagerFuncs is a list of functions to create controllers and add them to a manager.
AddToManagerFuncs = append(AddToManagerFuncs, providernetwork.Add)
}
|