Need help with c

package main

import (
“context”
“fmt”
The Go Programming Language
“io”
“io/ioutil”
“log”
“net/http”
“net/http/httptest”
“net/http/httputil”
“net/url”
“os”
“os/exec”
“sync”
“sync/atomic”
)

func main() {
n := 1000
wg := new(sync.WaitGroup)
wg.Add(n)
var rn int64
cst := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
wg.Done()
atomic.AddInt64(&rn, 1)
fmt.Println(" req # ", atomic.LoadInt64(&rn))
files := string{
“main.go”,
“/home/v/GolangProjects/browsefile/backend/.gometalinter.json”,
“/home/v/GolangProjects/browsefile/backend/LICENSE”,
“/home/v/GolangProjects/browsefile/backend/.dockerignore”,
}
if err := serveDownload(r.Context(), w, files); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}))

if err := http2.ConfigureServer(cst.Config, new(http2.Server)); err != nil {
log.Fatal(err)
}
cst.TLS = cst.Config.TLSConfig
cst.StartTLS()
defer cst.Close()

tr := &http.Transport{
TLSClientConfig: cst.Config.TLSConfig,
}
tr.TLSClientConfig.InsecureSkipVerify = true
http2.ConfigureTransport(tr)

for i := 0; i < n; i++ {
go func() {
req, _ := http.NewRequest(“GET”, cst.URL, nil)

  	res, err := tr.RoundTrip(req)
  	if err != nil {
  		log.Fatalf("Failed to make request: %v", err)
  	}
  	defer res.Body.Close()

  	if false { // Uncomment in order to examine the entire response and ensure HTTP/2.0 being used.
  		blob, _ := httputil.DumpResponse(res, true)
  		println(string(blob))
  	} else {
  		io.Copy(ioutil.Discard, res.Body)
  	}
  }()

}

fmt.Println(“hung here”)

wg.Wait()

}
func serveDownload(ctx context.Context, w http.ResponseWriter, files string) (err error) {
// Defines the file name.
name := “archive.zip”
w.Header().Set(“Content-Disposition”, “attachment; filename*=utf-8’'”+url.PathEscape(name))
pr, pw := io.Pipe()
//j - cut path, and store only
cmd := exec.Command(“zip”, append(string{“-0rq”, “-”}, files…)…)
cmd.Stdout = pw
cmd.Stderr = os.Stderr
go func() {
defer pr.Close()
// copy the data written to the PipeReader via the cmd to stdout
if _, err := io.Copy(w, pr); err != nil {
panic(err)
}
}()
return cmd.Run()
}

This forum over moderated, I already solve my problem, and I even did not have a chance to edit or view my post before this moment of time. Please drop this post, and my account, not interested to use this forum anymore.