RegisterWeb registers a web subsystem to the component.
(s web.Registerer)
| 117 | |
| 118 | // RegisterWeb registers a web subsystem to the component. |
| 119 | func (c *Component) RegisterWeb(s web.Registerer) { |
| 120 | c.webSubsystems = append(c.webSubsystems, s) |
| 121 | } |
| 122 | |
| 123 | // HealthChecker returns the component's health checker. |
| 124 | func (c *Component) HealthChecker() healthcheck.HealthChecker { |
no outgoing calls