move proto package

This commit is contained in:
chrislu
2022-08-17 12:05:07 -07:00
parent e259052a70
commit eaeb141b09
49 changed files with 53 additions and 53 deletions

View File

@@ -2,9 +2,9 @@ package shell
import (
"fmt"
"github.com/golang/protobuf/jsonpb"
"github.com/golang/protobuf/proto"
"golang.org/x/exp/slices"
"google.golang.org/protobuf/jsonpb"
"google.golang.org/protobuf/proto"
"io"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"

View File

@@ -8,7 +8,7 @@ import (
"strings"
"time"
"github.com/golang/protobuf/proto"
"google.golang.org/protobuf/proto"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
"github.com/seaweedfs/seaweedfs/weed/util"

View File

@@ -12,7 +12,7 @@ import (
"sync/atomic"
"time"
"github.com/golang/protobuf/proto"
"google.golang.org/protobuf/proto"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
"github.com/seaweedfs/seaweedfs/weed/util"

View File

@@ -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"
"regexp"
"strings"

View File

@@ -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"

View File

@@ -2,9 +2,9 @@ package shell
import (
_ "embed"
"github.com/golang/protobuf/proto"
"github.com/seaweedfs/seaweedfs/weed/storage/types"
"github.com/stretchr/testify/assert"
"google.golang.org/protobuf/proto"
"strconv"
"strings"
"testing"