aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/s3iam_conf.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-08-17 12:05:07 -0700
committerchrislu <chris.lu@gmail.com>2022-08-17 12:05:07 -0700
commiteaeb141b09326aa7c4d1d1e7b7f27e119d019f9c (patch)
tree30d8115e8df623d300fd34f4d187f965b5dc62c6 /weed/filer/s3iam_conf.go
parente259052a70b72bf193013829b272611a32f12bde (diff)
downloadseaweedfs-eaeb141b09326aa7c4d1d1e7b7f27e119d019f9c.tar.xz
seaweedfs-eaeb141b09326aa7c4d1d1e7b7f27e119d019f9c.zip
move proto package
Diffstat (limited to 'weed/filer/s3iam_conf.go')
-rw-r--r--weed/filer/s3iam_conf.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/filer/s3iam_conf.go b/weed/filer/s3iam_conf.go
index ee55a09c1..6240058a4 100644
--- a/weed/filer/s3iam_conf.go
+++ b/weed/filer/s3iam_conf.go
@@ -5,9 +5,9 @@ import (
"fmt"
"io"
- "github.com/golang/protobuf/jsonpb"
- "github.com/golang/protobuf/proto"
"github.com/seaweedfs/seaweedfs/weed/pb/iam_pb"
+ "google.golang.org/protobuf/jsonpb"
+ "google.golang.org/protobuf/proto"
)
func ParseS3ConfigurationFromBytes[T proto.Message](content []byte, config T) error {