func httpClient() {
  c := http.Client{}
  req, _ := http.NewRequest("GET", "http://localhost:8080/test", nil)
  resp, _ := c.Do(req)
}