fix: module name
This commit is contained in:
@@ -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
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
module github.com/tenrok/filestore
|
module git.company.lan/gopkg/filestore
|
||||||
|
|
||||||
go 1.23.6
|
go 1.23.6
|
||||||
|
|
||||||
@@ -25,4 +25,4 @@ require (
|
|||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/tenrok/filestore/remote => ./remote
|
replace git.company.lan/gopkg/filestore/remote => ./remote
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/tenrok/filestore/remote"
|
"git.company.lan/gopkg/filestore/remote"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ http.FileSystem = (*HttpFS)(nil)
|
var _ http.FileSystem = (*HttpFS)(nil)
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|
||||||
"github.com/tenrok/filestore/remote"
|
"git.company.lan/gopkg/filestore/remote"
|
||||||
)
|
)
|
||||||
|
|
||||||
const defaultFileMode = 0o755
|
const defaultFileMode = 0o755
|
||||||
|
|||||||
Reference in New Issue
Block a user