Skip to content

Instantly share code, notes, and snippets.

@michaelgugino
Created May 7, 2019 18:56
Show Gist options
  • Select an option

  • Save michaelgugino/82bd6dd8db2ae699e232e821e8bdcce2 to your computer and use it in GitHub Desktop.

Select an option

Save michaelgugino/82bd6dd8db2ae699e232e821e8bdcce2 to your computer and use it in GitHub Desktop.
actuator-library
# pkg/actuator/common.go
package actuator
func (a *Actuator) Reconcile(...) {
...
a.Create(...)
}
# pkg/actuator/myprovider.go
## my custom actuator code lives here.
func (a *Actuator) Create(...) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment