fix: module name

This commit is contained in:
2025-06-03 14:12:24 +03:00
parent aaa593997a
commit 18b8cb8d1d
4 changed files with 4 additions and 17 deletions
-13
View File
@@ -1,13 +0,0 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 10
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: monthly
open-pull-requests-limit: 10
+2 -2
View File
@@ -1,4 +1,4 @@
module github.com/tenrok/filestore
module git.company.lan/gopkg/filestore
go 1.23.6
@@ -25,4 +25,4 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace github.com/tenrok/filestore/remote => ./remote
replace git.company.lan/gopkg/filestore/remote => ./remote
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"net/http"
"strings"
"github.com/tenrok/filestore/remote"
"git.company.lan/gopkg/filestore/remote"
)
var _ http.FileSystem = (*HttpFS)(nil)
+1 -1
View File
@@ -12,7 +12,7 @@ import (
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
"github.com/tenrok/filestore/remote"
"git.company.lan/gopkg/filestore/remote"
)
const defaultFileMode = 0o755