delete debug print

This commit is contained in:
schulze 2023-05-03 14:00:52 +02:00
parent 9fa99118d5
commit 3b4c0f49d4

View File

@ -50,7 +50,6 @@ func (p Proxy) execute(c command) (string, error) {
}
requestURL := fmt.Sprintf("http://%s:%d/command", p.url.Addr().String(), p.url.Port())
fmt.Println(requestURL)
bodyReader := bytes.NewReader(data)
res, err := http.DefaultClient.Post(requestURL, "application/json", bodyReader)