package httpQuery import "testing" func TestGet(t *testing.T) { body, err := httpQuery.GET("https://api.ethermine.org/poolStats") if err != nil { t.Error(err) } t.Log(string(body)) }