serverGroup manages the starting and graceful shutdown of a collection of servers.
| 17 | // serverGroup manages the starting and graceful shutdown of a collection of |
| 18 | // servers. |
| 19 | type serverGroup struct { |
| 20 | servers []Server |
| 21 | } |
| 22 | |
| 23 | // Start runs the servers in the server group. |
| 24 | func (s *serverGroup) Start(ctx context.Context) error { |
nothing calls this directly
no outgoing calls
no test coverage detected