From b62bfb89f99922423ffc952763db06bb839f0143 Mon Sep 17 00:00:00 2001 From: harold Date: Fri, 18 Apr 2025 18:47:27 +0500 Subject: [PATCH] add https for create lint file url --- infrastructure/sysStorage/sysStorage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/sysStorage/sysStorage.go b/infrastructure/sysStorage/sysStorage.go index 9369955..9cc619b 100644 --- a/infrastructure/sysStorage/sysStorage.go +++ b/infrastructure/sysStorage/sysStorage.go @@ -29,7 +29,7 @@ func NewLocalStorage(basePath, fileUrl string) *LocalStorage { if err := os.MkdirAll(basePath, os.ModePerm); err != nil { panic("Failed to create storage directory: " + err.Error()) } - fileUrl = "http://" + fileUrl + fileUrl = "https://" + fileUrl return &LocalStorage{basePath: basePath, FileUrl: fileUrl} }