revert module name

This commit is contained in:
2025-06-03 14:05:28 +03:00
parent c4fef72c3a
commit aaa593997a
3 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
module filestore module github.com/tenrok/filestore
go 1.23.6 go 1.23.6
@@ -24,3 +24,5 @@ require (
golang.org/x/text v0.25.0 // indirect golang.org/x/text v0.25.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect
) )
replace github.com/tenrok/filestore/remote => ./remote
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"net/http" "net/http"
"strings" "strings"
"filestore/remote" "github.com/tenrok/filestore/remote"
) )
var _ http.FileSystem = (*HttpFS)(nil) 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"
"github.com/minio/minio-go/v7/pkg/credentials" "github.com/minio/minio-go/v7/pkg/credentials"
"filestore/remote" "github.com/tenrok/filestore/remote"
) )
const defaultFileMode = 0o755 const defaultFileMode = 0o755