Skip to content

Commit

Permalink
Move codegenerator back to public namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
johanbrandhorst committed Apr 7, 2020
1 parent 5950b0c commit 384f7b8
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ go_library(
"doc.go",
"parse_req.go",
],
importpath = "github.com/grpc-ecosystem/grpc-gateway/internal/codegenerator",
importpath = "github.com/grpc-ecosystem/grpc-gateway/codegenerator",
deps = [
"@com_github_golang_protobuf//proto:go_default_library",
"@io_bazel_rules_go//proto/wkt:compiler_plugin_go_proto",
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/golang/protobuf/proto"
plugin "github.com/golang/protobuf/protoc-gen-go/plugin"
"github.com/grpc-ecosystem/grpc-gateway/internal/codegenerator"
"github.com/grpc-ecosystem/grpc-gateway/codegenerator"
)

var parseReqTests = []struct {
Expand Down
2 changes: 1 addition & 1 deletion protoc-gen-grpc-gateway/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ go_library(
srcs = ["main.go"],
importpath = "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway",
deps = [
"//internal/codegenerator:go_default_library",
"//codegenerator:go_default_library",
"//protoc-gen-grpc-gateway/descriptor:go_default_library",
"//protoc-gen-grpc-gateway/internal/gengateway:go_default_library",
"@com_github_golang_glog//:go_default_library",
Expand Down
2 changes: 1 addition & 1 deletion protoc-gen-grpc-gateway/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/golang/glog"
"github.com/golang/protobuf/proto"
plugin "github.com/golang/protobuf/protoc-gen-go/plugin"
"github.com/grpc-ecosystem/grpc-gateway/internal/codegenerator"
"github.com/grpc-ecosystem/grpc-gateway/codegenerator"
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/descriptor"
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/internal/gengateway"
)
Expand Down
2 changes: 1 addition & 1 deletion protoc-gen-swagger/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ go_library(
srcs = ["main.go"],
importpath = "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger",
deps = [
"//internal/codegenerator:go_default_library",
"//codegenerator:go_default_library",
"//protoc-gen-grpc-gateway/descriptor:go_default_library",
"//protoc-gen-swagger/genswagger:go_default_library",
"@com_github_golang_glog//:go_default_library",
Expand Down
2 changes: 1 addition & 1 deletion protoc-gen-swagger/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/golang/glog"
"github.com/golang/protobuf/proto"
plugin "github.com/golang/protobuf/protoc-gen-go/plugin"
"github.com/grpc-ecosystem/grpc-gateway/internal/codegenerator"
"github.com/grpc-ecosystem/grpc-gateway/codegenerator"
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/descriptor"
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger/genswagger"
)
Expand Down

0 comments on commit 384f7b8

Please sign in to comment.