(srv *Server, path string)
| 1092 | } |
| 1093 | |
| 1094 | func httpTarget(srv *Server, path string) string { |
| 1095 | return fmt.Sprintf("http://%s%s", srv.HTTPListenAddr().String(), path) |
| 1096 | } |
| 1097 | |
| 1098 | func httpsTarget(srv *Server, path string) string { |
| 1099 | return fmt.Sprintf("https://%s%s", srv.HTTPListenAddr().String(), path) |
no test coverage detected