package cli import ( "net/http" "time" ) const httpTimeout = 30 * time.Second var httpClient = &http.Client{Timeout: httpTimeout}