Created
May 7, 2019 18:56
-
-
Save michaelgugino/82bd6dd8db2ae699e232e821e8bdcce2 to your computer and use it in GitHub Desktop.
actuator-library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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