renamed DownloadPackageHTTP function to GetFileHTTP

This commit is contained in:
2025-09-19 23:33:12 -03:00
parent f8bda68a57
commit 9e09b1e3a4

View File

@@ -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 {