| 8 | ) |
| 9 | |
| 10 | type Server struct { |
| 11 | address string |
| 12 | handler http.Handler |
| 13 | logger infoErrorer |
| 14 | internalWG *sync.WaitGroup |
| 15 | readHeaderTimeout time.Duration |
| 16 | readTimeout time.Duration |
| 17 | } |
| 18 | |
| 19 | func New(ctx context.Context, address string, logger Logger, |
| 20 | stealth, verbose bool, username, password string, |
nothing calls this directly
no outgoing calls
no test coverage detected