Init is called once the component has been constructed and dependencies injected.
(ctx context.Context)
| 22 | type Initializer interface { |
| 23 | // Init is called once the component has been constructed and dependencies injected. |
| 24 | Init(ctx context.Context) error |
| 25 | } |
| 26 | |
| 27 | // PreProcessor defines logic that runs before a component is initialized. |
no outgoing calls
no test coverage detected