diff --git a/cmd/grpcurl/grpcurl.go b/cmd/grpcurl/grpcurl.go index 60e0b38..186b507 100644 --- a/cmd/grpcurl/grpcurl.go +++ b/cmd/grpcurl/grpcurl.go @@ -13,10 +13,10 @@ import ( "strings" "time" - "github.com/fullstorydev/grpcurl" descpb "github.com/golang/protobuf/protoc-gen-go/descriptor" "github.com/jhump/protoreflect/desc" "github.com/jhump/protoreflect/grpcreflect" + "github.com/kai5263499/grpcurl" "golang.org/x/net/context" "google.golang.org/grpc" "google.golang.org/grpc/codes" diff --git a/go.mod b/go.mod index 0fc695a..4a9de92 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/fullstorydev/grpcurl +module github.com/kai5263499/grpcurl go 1.13 diff --git a/grpcurl_test.go b/grpcurl_test.go index dabde2d..4933bf3 100644 --- a/grpcurl_test.go +++ b/grpcurl_test.go @@ -23,9 +23,9 @@ import ( reflectpb "google.golang.org/grpc/reflection/grpc_reflection_v1alpha" "google.golang.org/grpc/status" - . "github.com/fullstorydev/grpcurl" - grpcurl_testing "github.com/fullstorydev/grpcurl/internal/testing" - jsonpbtest "github.com/fullstorydev/grpcurl/internal/testing/jsonpb_test_proto" + . "github.com/kai5263499/grpcurl" + grpcurl_testing "github.com/kai5263499/grpcurl/internal/testing" + jsonpbtest "github.com/kai5263499/grpcurl/internal/testing/jsonpb_test_proto" ) var ( diff --git a/internal/testing/cmd/testserver/testserver.go b/internal/testing/cmd/testserver/testserver.go index e42821f..2567ddd 100644 --- a/internal/testing/cmd/testserver/testserver.go +++ b/internal/testing/cmd/testserver/testserver.go @@ -17,8 +17,8 @@ import ( "google.golang.org/grpc/reflection" "google.golang.org/grpc/status" - "github.com/fullstorydev/grpcurl" - grpcurl_testing "github.com/fullstorydev/grpcurl/internal/testing" + "github.com/kai5263499/grpcurl" + grpcurl_testing "github.com/kai5263499/grpcurl/internal/testing" ) var ( diff --git a/internal/testing/test_server.go b/internal/testing/test_server.go index 413f2c5..52e91c2 100644 --- a/internal/testing/test_server.go +++ b/internal/testing/test_server.go @@ -15,7 +15,7 @@ import ( "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" - "github.com/fullstorydev/grpcurl" + "github.com/kai5263499/grpcurl" ) // TestServer implements the TestService interface defined in example.proto. diff --git a/tls_settings_test.go b/tls_settings_test.go index b6d77ad..d5fde90 100644 --- a/tls_settings_test.go +++ b/tls_settings_test.go @@ -11,8 +11,8 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/credentials" - . "github.com/fullstorydev/grpcurl" - grpcurl_testing "github.com/fullstorydev/grpcurl/internal/testing" + . "github.com/kai5263499/grpcurl" + grpcurl_testing "github.com/kai5263499/grpcurl/internal/testing" ) func TestPlainText(t *testing.T) {