Start blocks and runs the server.
(ctx context.Context)
| 23 | type Server interface { |
| 24 | // Start blocks and runs the server. |
| 25 | Start(ctx context.Context) error |
| 26 | } |
| 27 | |
| 28 | // Opts contains the information required to set up the server. |
no outgoing calls