diff --git a/galenectl/galenectl.go b/galenectl/galenectl.go index 57375da..cdddde7 100644 --- a/galenectl/galenectl.go +++ b/galenectl/galenectl.go @@ -326,7 +326,7 @@ func setAuthorization(req *http.Request) { } } -func getJSON[T any](url string, value T) (string, error) { +func getJSON(url string, value any) (string, error) { req, err := http.NewRequest("GET", url, nil) if err != nil { return "", err