ResourceHandler handles the creation and update of resources
| 8 | |
| 9 | // ResourceHandler handles the creation and update of resources |
| 10 | type ResourceHandler interface { |
| 11 | Handle() error |
| 12 | GetConfig() (common.Config, string) |
| 13 | } |
| 14 | |
| 15 | // TimedHandler is a handler that tracks when it was enqueued |
| 16 | type TimedHandler interface { |
no outgoing calls
no test coverage detected