This repository was archived by the owner on Feb 21, 2024. It is now read-only.
File tree 7 files changed +14
-12
lines changed
7 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 6
6
7
7
"github.com/golang/protobuf/protoc-gen-go/descriptor"
8
8
9
- graphqlpb "github.com/martinxsliu /protoc-gen-graphql/protobuf/graphql"
9
+ graphqlpb "github.com/apalchys /protoc-gen-graphql/protobuf/graphql"
10
10
)
11
11
12
12
type File struct {
Original file line number Diff line number Diff line change 7
7
"github.com/golang/protobuf/proto"
8
8
pb "github.com/golang/protobuf/protoc-gen-go/descriptor"
9
9
10
- graphqlpb "github.com/martinxsliu /protoc-gen-graphql/protobuf/graphql"
10
+ graphqlpb "github.com/apalchys /protoc-gen-graphql/protobuf/graphql"
11
11
)
12
12
13
13
func getFileOptions (file * pb.FileDescriptorProto ) * graphqlpb.FileOptions {
Original file line number Diff line number Diff line change 6
6
7
7
plugin "github.com/golang/protobuf/protoc-gen-go/plugin"
8
8
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"
12
12
)
13
13
14
14
const header = `# DO NOT EDIT! Generated by protoc-gen-graphql.`
Original file line number Diff line number Diff line change 1
- module github.com/martinxsliu /protoc-gen-graphql
1
+ module github.com/apalchys /protoc-gen-graphql
2
2
3
- go 1.14
3
+ go 1.15
4
4
5
- require github.com/golang/protobuf v1.3.2
5
+ require (
6
+ github.com/golang/protobuf v1.3.2
7
+ )
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ import (
5
5
"os"
6
6
"strings"
7
7
8
+ "github.com/apalchys/protoc-gen-graphql/descriptor"
9
+ "github.com/apalchys/protoc-gen-graphql/graphql"
8
10
pb "github.com/golang/protobuf/protoc-gen-go/descriptor"
9
11
"github.com/golang/protobuf/protoc-gen-go/generator"
10
- "github.com/martinxsliu/protoc-gen-graphql/descriptor"
11
- "github.com/martinxsliu/protoc-gen-graphql/graphql"
12
12
)
13
13
14
14
type Mapper struct {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ syntax = "proto3";
2
2
3
3
package graphql ;
4
4
5
- option go_package = "github.com/martinxsliu /protoc-gen-graphql/protobuf/graphql" ;
5
+ option go_package = "github.com/apalchys /protoc-gen-graphql/protobuf/graphql" ;
6
6
7
7
import "google/protobuf/descriptor.proto" ;
8
8
You can’t perform that action at this time.
0 commit comments