aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_remote_mount.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/shell/command_remote_mount.go
parente259052a70b72bf193013829b272611a32f12bde (diff)
downloadseaweedfs-eaeb141b09326aa7c4d1d1e7b7f27e119d019f9c.tar.xz
seaweedfs-eaeb141b09326aa7c4d1d1e7b7f27e119d019f9c.zip
move proto package
Diffstat (limited to 'weed/shell/command_remote_mount.go')
-rw-r--r--weed/shell/command_remote_mount.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/shell/command_remote_mount.go b/weed/shell/command_remote_mount.go
index a2a34304a..ef837a821 100644
--- a/weed/shell/command_remote_mount.go
+++ b/weed/shell/command_remote_mount.go
@@ -4,13 +4,13 @@ import (
"context"
"flag"
"fmt"
- "github.com/golang/protobuf/jsonpb"
- "github.com/golang/protobuf/proto"
"github.com/seaweedfs/seaweedfs/weed/filer"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
"github.com/seaweedfs/seaweedfs/weed/pb/remote_pb"
"github.com/seaweedfs/seaweedfs/weed/remote_storage"
"github.com/seaweedfs/seaweedfs/weed/util"
+ "google.golang.org/protobuf/jsonpb"
+ "google.golang.org/protobuf/proto"
"io"
"os"
"strings"