From 9e09b1e3a45330924464c88723cde094e50553c4 Mon Sep 17 00:00:00 2001 From: roboogg133 Date: Fri, 19 Sep 2025 23:33:12 -0300 Subject: [PATCH] renamed DownloadPackageHTTP function to GetFileHTTP --- internal/utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/utils/utils.go b/internal/utils/utils.go index cbc006a..6d74f54 100644 --- a/internal/utils/utils.go +++ b/internal/utils/utils.go @@ -14,7 +14,7 @@ import ( "github.com/pelletier/go-toml/v2" ) -func DownloadPackageHTTP(url string) (*[]byte, error) { +func GetFileHTTP(url string) (*[]byte, error) { resp, err := http.Get(url) if err != nil {