mirror of
https://github.com/1Password/onepassword-operator.git
synced 2025-10-21 23:18:06 +00:00
11 lines
285 B
Go
11 lines
285 B
Go
package controller
|
|
|
|
import (
|
|
"github.com/1Password/onepassword-operator/operator/pkg/controller/deployment"
|
|
)
|
|
|
|
func init() {
|
|
// AddToManagerFuncs is a list of functions to create controllers and add them to a manager.
|
|
AddToManagerFuncs = append(AddToManagerFuncs, deployment.Add)
|
|
}
|