BPA Provisioning CRD and Controller
[icn.git] / cmd / bpa-operator / pkg / controller / add_provisioning.go
1 package controller
2
3 import (
4         "github.com/bpa-operator/pkg/controller/provisioning"
5 )
6
7 func init() {
8         // AddToManagerFuncs is a list of functions to create controllers and add them to a manager.
9         AddToManagerFuncs = append(AddToManagerFuncs, provisioning.Add)
10 }