Start starts the service, returning an error if it fails.
(ctx context.Context)
| 13 | type Service interface { |
| 14 | // Start starts the service, returning an error if it fails. |
| 15 | Start(ctx context.Context) error |
| 16 | |
| 17 | // String returns a string representation of the service. |
| 18 | // It is used to print a human-readable name of the service in the startup message. |
no outgoing calls