Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit 3f7bd6d

Browse files
committed
Update imports
1 parent a9e5758 commit 3f7bd6d

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

descriptor/descriptor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/golang/protobuf/protoc-gen-go/descriptor"
88

9-
graphqlpb "github.com/martinxsliu/protoc-gen-graphql/protobuf/graphql"
9+
graphqlpb "github.com/apalchys/protoc-gen-graphql/protobuf/graphql"
1010
)
1111

1212
type File struct {

descriptor/extensions.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/golang/protobuf/proto"
88
pb "github.com/golang/protobuf/protoc-gen-go/descriptor"
99

10-
graphqlpb "github.com/martinxsliu/protoc-gen-graphql/protobuf/graphql"
10+
graphqlpb "github.com/apalchys/protoc-gen-graphql/protobuf/graphql"
1111
)
1212

1313
func getFileOptions(file *pb.FileDescriptorProto) *graphqlpb.FileOptions {

generator.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66

77
plugin "github.com/golang/protobuf/protoc-gen-go/plugin"
88

9-
"github.com/martinxsliu/protoc-gen-graphql/descriptor"
10-
"github.com/martinxsliu/protoc-gen-graphql/graphql"
11-
"github.com/martinxsliu/protoc-gen-graphql/mapper"
9+
"github.com/apalchys/protoc-gen-graphql/descriptor"
10+
"github.com/apalchys/protoc-gen-graphql/graphql"
11+
"github.com/apalchys/protoc-gen-graphql/mapper"
1212
)
1313

1414
const header = `# DO NOT EDIT! Generated by protoc-gen-graphql.`

go.mod

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
module github.com/martinxsliu/protoc-gen-graphql
1+
module github.com/apalchys/protoc-gen-graphql
22

3-
go 1.14
3+
go 1.15
44

5-
require github.com/golang/protobuf v1.3.2
5+
require (
6+
github.com/golang/protobuf v1.3.2
7+
)

mapper/mapper.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"os"
66
"strings"
77

8+
"github.com/apalchys/protoc-gen-graphql/descriptor"
9+
"github.com/apalchys/protoc-gen-graphql/graphql"
810
pb "github.com/golang/protobuf/protoc-gen-go/descriptor"
911
"github.com/golang/protobuf/protoc-gen-go/generator"
10-
"github.com/martinxsliu/protoc-gen-graphql/descriptor"
11-
"github.com/martinxsliu/protoc-gen-graphql/graphql"
1212
)
1313

1414
type Mapper struct {

protobuf/graphql/options.pb.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protobuf/graphql/options.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ syntax = "proto3";
22

33
package graphql;
44

5-
option go_package = "github.com/martinxsliu/protoc-gen-graphql/protobuf/graphql";
5+
option go_package = "github.com/apalchys/protoc-gen-graphql/protobuf/graphql";
66

77
import "google/protobuf/descriptor.proto";
88

0 commit comments

Comments
 (0)