From 94bcf11351a51ca2ef62918cf8a7c7a5d2aa9b43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8C=85=E5=AD=90?= Date: Fri, 7 Jan 2022 14:17:44 +0800 Subject: [PATCH] refactor: rename apps to cmd and add go.mod (#279) * refactor: rename apps to cmd and add go.mod * Structure Makefile and go.mod files for multimodule builds+testing. Co-authored-by: Tim Burks --- COMPILE-PROTOS.sh | 2 +- Makefile | 6 + {apps => cmd}/disco/README.md | 3 +- cmd/disco/go.mod | 11 ++ cmd/disco/go.sum | 36 +++++ {apps => cmd}/disco/main.go | 0 cmd/parse-linter-output/go.mod | 7 + cmd/parse-linter-output/go.sum | 39 +++++ {apps => cmd}/parse-linter-output/main.go | 0 {apps => cmd}/petstore-builder/README.md | 0 .../petstore-builder/builder_test.go | 0 cmd/petstore-builder/go.mod | 10 ++ cmd/petstore-builder/go.sum | 34 ++++ {apps => cmd}/petstore-builder/main.go | 0 {apps => cmd}/petstore-builder/petstore-v2.go | 0 {apps => cmd}/petstore-builder/petstore-v3.go | 0 {apps => cmd}/protoc-gen-jsonschema/README.md | 3 +- .../examples/google/api/annotations.proto | 0 .../examples/google/api/client.proto | 0 .../examples/google/api/field_behavior.proto | 0 .../examples/google/api/http.proto | 0 .../examples/google/api/resource.proto | 0 .../google/example/library/v1/library.proto | 0 .../example/library/v1/schemas_json/Book.json | 0 .../v1/schemas_json/CreateBookRequest.json | 0 .../v1/schemas_json/CreateShelfRequest.json | 0 .../v1/schemas_json/DeleteBookRequest.json | 0 .../v1/schemas_json/DeleteShelfRequest.json | 0 .../v1/schemas_json/GetBookRequest.json | 0 .../v1/schemas_json/GetShelfRequest.json | 0 .../v1/schemas_json/ListBooksRequest.json | 0 .../v1/schemas_json/ListBooksResponse.json | 0 .../v1/schemas_json/ListShelvesRequest.json | 0 .../v1/schemas_json/ListShelvesResponse.json | 0 .../v1/schemas_json/MergeShelvesRequest.json | 0 .../v1/schemas_json/MoveBookRequest.json | 0 .../library/v1/schemas_json/Shelf.json | 0 .../v1/schemas_json/UpdateBookRequest.json | 0 .../library/v1/schemas_proto/Book.json | 0 .../v1/schemas_proto/CreateBookRequest.json | 0 .../v1/schemas_proto/CreateShelfRequest.json | 0 .../v1/schemas_proto/DeleteBookRequest.json | 0 .../v1/schemas_proto/DeleteShelfRequest.json | 0 .../v1/schemas_proto/GetBookRequest.json | 0 .../v1/schemas_proto/GetShelfRequest.json | 0 .../v1/schemas_proto/ListBooksRequest.json | 0 .../v1/schemas_proto/ListBooksResponse.json | 0 .../v1/schemas_proto/ListShelvesRequest.json | 0 .../v1/schemas_proto/ListShelvesResponse.json | 0 .../v1/schemas_proto/MergeShelvesRequest.json | 0 .../v1/schemas_proto/MoveBookRequest.json | 0 .../library/v1/schemas_proto/Shelf.json | 0 .../v1/schemas_proto/UpdateBookRequest.json | 0 .../library/v1/testdata_json/Book.json | 0 .../v1/testdata_json/CreateBookRequest.json | 0 .../v1/testdata_json/CreateShelfRequest.json | 0 .../v1/testdata_json/DeleteBookRequest.json | 0 .../v1/testdata_json/DeleteShelfRequest.json | 0 .../v1/testdata_json/GetBookRequest.json | 0 .../v1/testdata_json/GetShelfRequest.json | 0 .../v1/testdata_json/ListBooksRequest.json | 0 .../v1/testdata_json/ListBooksResponse.json | 0 .../v1/testdata_json/ListShelvesRequest.json | 0 .../v1/testdata_json/ListShelvesResponse.json | 0 .../v1/testdata_json/MergeShelvesRequest.json | 0 .../v1/testdata_json/MoveBookRequest.json | 0 .../library/v1/testdata_json/Shelf.json | 0 .../v1/testdata_json/UpdateBookRequest.json | 0 .../examples/google/type/date.proto | 0 .../examples/google/type/datetime.proto | 0 .../examples/tests/embedded/message.proto | 0 .../tests/embedded/schemas_json/Message.json | 0 .../tests/embedded/schemas_proto/Message.json | 0 .../tests/embedded/testdata_json/Message.json | 0 .../examples/tests/jsonoptions/message.proto | 0 .../jsonoptions/schemas_json/Message.json | 0 .../jsonoptions/schemas_json/Message2.json | 0 .../jsonoptions/schemas_proto/Message.json | 0 .../jsonoptions/schemas_proto/Message2.json | 0 .../jsonoptions/testdata_json/Message.json | 0 .../jsonoptions/testdata_json/Message2.json | 0 .../examples/tests/mapfields/message.proto | 0 .../schemas_json/AnotherMessage.json | 0 .../tests/mapfields/schemas_json/Message.json | 0 .../schemas_proto/AnotherMessage.json | 0 .../mapfields/schemas_proto/Message.json | 0 .../testdata_json/AnotherMessage.json | 0 .../mapfields/testdata_json/Message.json | 0 .../generator/json-schema.go | 0 cmd/protoc-gen-jsonschema/go.mod | 12 ++ cmd/protoc-gen-jsonschema/go.sum | 153 ++++++++++++++++++ {apps => cmd}/protoc-gen-jsonschema/main.go | 2 +- .../protoc-gen-jsonschema/plugin_test.go | 0 {apps => cmd}/protoc-gen-openapi/README.md | 3 +- .../examples/google/api/annotations.proto | 0 .../examples/google/api/client.proto | 0 .../examples/google/api/field_behavior.proto | 0 .../examples/google/api/http.proto | 0 .../examples/google/api/resource.proto | 0 .../google/example/library/v1/library.proto | 0 .../google/example/library/v1/openapi.yaml | 0 .../example/library/v1/openapi_json.yaml | 0 .../examples/google/type/date.proto | 0 .../examples/google/type/datetime.proto | 0 .../examples/tests/bodymapping/message.proto | 0 .../examples/tests/bodymapping/openapi.yaml | 0 .../tests/bodymapping/openapi_json.yaml | 0 .../examples/tests/jsonoptions/message.proto | 0 .../examples/tests/jsonoptions/openapi.yaml | 0 .../tests/jsonoptions/openapi_json.yaml | 0 .../examples/tests/mapfields/message.proto | 0 .../examples/tests/mapfields/openapi.yaml | 0 .../tests/mapfields/openapi_json.yaml | 0 .../tests/noannotations/message.proto | 0 .../examples/tests/noannotations/openapi.yaml | 0 .../tests/noannotations/openapi_json.yaml | 0 .../examples/tests/pathparams/message.proto | 0 .../examples/tests/pathparams/openapi.yaml | 0 .../tests/pathparams/openapi_json.yaml | 0 .../tests/protobuftypes/message.proto | 0 .../examples/tests/protobuftypes/openapi.yaml | 0 .../tests/protobuftypes/openapi_json.yaml | 0 .../generator/openapi-v3.go | 0 cmd/protoc-gen-openapi/go.mod | 11 ++ cmd/protoc-gen-openapi/go.sum | 134 +++++++++++++++ {apps => cmd}/protoc-gen-openapi/main.go | 2 +- .../protoc-gen-openapi/plugin_test.go | 0 {apps => cmd}/report-messages/README.md | 0 cmd/report-messages/go.mod | 10 ++ cmd/report-messages/go.sum | 34 ++++ {apps => cmd}/report-messages/main.go | 0 {apps => cmd}/report/README.md | 0 cmd/report/go.mod | 10 ++ cmd/report/go.sum | 34 ++++ {apps => cmd}/report/main.go | 0 {apps => cmd}/vocabulary-operations/README.md | 0 cmd/vocabulary-operations/go.mod | 10 ++ cmd/vocabulary-operations/go.sum | 34 ++++ {apps => cmd}/vocabulary-operations/main.go | 0 go.mod | 4 +- go.sum | 80 --------- 141 files changed, 592 insertions(+), 92 deletions(-) rename {apps => cmd}/disco/README.md (93%) create mode 100644 cmd/disco/go.mod create mode 100644 cmd/disco/go.sum rename {apps => cmd}/disco/main.go (100%) create mode 100644 cmd/parse-linter-output/go.mod create mode 100644 cmd/parse-linter-output/go.sum rename {apps => cmd}/parse-linter-output/main.go (100%) rename {apps => cmd}/petstore-builder/README.md (100%) rename {apps => cmd}/petstore-builder/builder_test.go (100%) create mode 100644 cmd/petstore-builder/go.mod create mode 100644 cmd/petstore-builder/go.sum rename {apps => cmd}/petstore-builder/main.go (100%) rename {apps => cmd}/petstore-builder/petstore-v2.go (100%) rename {apps => cmd}/petstore-builder/petstore-v3.go (100%) rename {apps => cmd}/protoc-gen-jsonschema/README.md (76%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/api/annotations.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/api/client.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/api/field_behavior.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/api/http.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/api/resource.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/library.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Book.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksResponse.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesResponse.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MergeShelvesRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MoveBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Shelf.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/UpdateBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Book.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksResponse.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesResponse.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MergeShelvesRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MoveBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Shelf.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/UpdateBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Book.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetShelfRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksResponse.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesResponse.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MergeShelvesRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MoveBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Shelf.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/UpdateBookRequest.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/type/date.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/google/type/datetime.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/embedded/message.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/embedded/schemas_json/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/embedded/schemas_proto/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/embedded/testdata_json/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/jsonoptions/message.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message2.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message2.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message2.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/mapfields/message.proto (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/AnotherMessage.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/AnotherMessage.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/AnotherMessage.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/Message.json (100%) rename {apps => cmd}/protoc-gen-jsonschema/generator/json-schema.go (100%) create mode 100644 cmd/protoc-gen-jsonschema/go.mod create mode 100644 cmd/protoc-gen-jsonschema/go.sum rename {apps => cmd}/protoc-gen-jsonschema/main.go (95%) rename {apps => cmd}/protoc-gen-jsonschema/plugin_test.go (100%) rename {apps => cmd}/protoc-gen-openapi/README.md (79%) rename {apps => cmd}/protoc-gen-openapi/examples/google/api/annotations.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/api/client.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/api/field_behavior.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/api/http.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/api/resource.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/example/library/v1/library.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/example/library/v1/openapi.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/example/library/v1/openapi_json.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/type/date.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/google/type/datetime.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/bodymapping/message.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/bodymapping/openapi.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/bodymapping/openapi_json.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/jsonoptions/message.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/jsonoptions/openapi.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/jsonoptions/openapi_json.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/mapfields/message.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/mapfields/openapi.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/mapfields/openapi_json.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/noannotations/message.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/noannotations/openapi.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/noannotations/openapi_json.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/pathparams/message.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/pathparams/openapi.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/pathparams/openapi_json.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/protobuftypes/message.proto (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/protobuftypes/openapi.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/examples/tests/protobuftypes/openapi_json.yaml (100%) rename {apps => cmd}/protoc-gen-openapi/generator/openapi-v3.go (100%) create mode 100644 cmd/protoc-gen-openapi/go.mod create mode 100644 cmd/protoc-gen-openapi/go.sum rename {apps => cmd}/protoc-gen-openapi/main.go (96%) rename {apps => cmd}/protoc-gen-openapi/plugin_test.go (100%) rename {apps => cmd}/report-messages/README.md (100%) create mode 100644 cmd/report-messages/go.mod create mode 100644 cmd/report-messages/go.sum rename {apps => cmd}/report-messages/main.go (100%) rename {apps => cmd}/report/README.md (100%) create mode 100644 cmd/report/go.mod create mode 100644 cmd/report/go.sum rename {apps => cmd}/report/main.go (100%) rename {apps => cmd}/vocabulary-operations/README.md (100%) create mode 100644 cmd/vocabulary-operations/go.mod create mode 100644 cmd/vocabulary-operations/go.sum rename {apps => cmd}/vocabulary-operations/main.go (100%) diff --git a/COMPILE-PROTOS.sh b/COMPILE-PROTOS.sh index d8467224..eeb6cd32 100755 --- a/COMPILE-PROTOS.sh +++ b/COMPILE-PROTOS.sh @@ -15,7 +15,7 @@ # limitations under the License. # -go get github.com/golang/protobuf/protoc-gen-go +go install github.com/golang/protobuf/protoc-gen-go@latest protoc -I . -I ./third_party --go_out=. openapiv2/OpenAPIv2.proto protoc -I . -I ./third_party --go_out=. openapiv3/OpenAPIv3.proto diff --git a/Makefile b/Makefile index c23cb839..0a9f6b04 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,14 @@ all: go get ./... go install ./... cd extensions/sample; make + for CMD in `ls cmd` ; do (cd ./cmd/$$CMD; echo "install $$CMD"; go install ./...); done test: # since some tests call separately-built binaries, clear the cache to ensure all get run go clean -testcache go test ./... -v + for CMD in `ls cmd` ; do (cd ./cmd/$$CMD; echo "test $$CMD"; go test ./... -v); done + +tidy: + go mod tidy + for CMD in `ls cmd` ; do (cd ./cmd/$$CMD; echo "tidy $$CMD"; go mod tidy); done diff --git a/apps/disco/README.md b/cmd/disco/README.md similarity index 93% rename from apps/disco/README.md rename to cmd/disco/README.md index 2a1fee91..6b87b7e5 100644 --- a/apps/disco/README.md +++ b/cmd/disco/README.md @@ -6,8 +6,7 @@ descriptions to OpenAPI. Installation: - go get github.com/google/gnostic - go install github.com/google/gnostic/apps/disco + go install github.com/google/gnostic/cmd/disco Usage: diff --git a/cmd/disco/go.mod b/cmd/disco/go.mod new file mode 100644 index 00000000..b369359b --- /dev/null +++ b/cmd/disco/go.mod @@ -0,0 +1,11 @@ +module github.com/google/gnostic/cmd/disco + +go 1.12 + +require ( + github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 + github.com/golang/protobuf v1.5.2 + github.com/google/gnostic v0.0.0 +) + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/disco/go.sum b/cmd/disco/go.sum new file mode 100644 index 00000000..9b5b5df2 --- /dev/null +++ b/cmd/disco/go.sum @@ -0,0 +1,36 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/apps/disco/main.go b/cmd/disco/main.go similarity index 100% rename from apps/disco/main.go rename to cmd/disco/main.go diff --git a/cmd/parse-linter-output/go.mod b/cmd/parse-linter-output/go.mod new file mode 100644 index 00000000..52d315d6 --- /dev/null +++ b/cmd/parse-linter-output/go.mod @@ -0,0 +1,7 @@ +module github.com/google/gnostic/cmd/parse-linter-output + +go 1.12 + +require github.com/google/gnostic v0.0.0 + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/parse-linter-output/go.sum b/cmd/parse-linter-output/go.sum new file mode 100644 index 00000000..c5dd2fe1 --- /dev/null +++ b/cmd/parse-linter-output/go.sum @@ -0,0 +1,39 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stoewer/go-strcase v1.2.0 h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/apps/parse-linter-output/main.go b/cmd/parse-linter-output/main.go similarity index 100% rename from apps/parse-linter-output/main.go rename to cmd/parse-linter-output/main.go diff --git a/apps/petstore-builder/README.md b/cmd/petstore-builder/README.md similarity index 100% rename from apps/petstore-builder/README.md rename to cmd/petstore-builder/README.md diff --git a/apps/petstore-builder/builder_test.go b/cmd/petstore-builder/builder_test.go similarity index 100% rename from apps/petstore-builder/builder_test.go rename to cmd/petstore-builder/builder_test.go diff --git a/cmd/petstore-builder/go.mod b/cmd/petstore-builder/go.mod new file mode 100644 index 00000000..6edd33ea --- /dev/null +++ b/cmd/petstore-builder/go.mod @@ -0,0 +1,10 @@ +module github.com/google/gnostic/cmd/petstore-builder + +go 1.12 + +require ( + github.com/golang/protobuf v1.5.2 + github.com/google/gnostic v0.0.0 +) + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/petstore-builder/go.sum b/cmd/petstore-builder/go.sum new file mode 100644 index 00000000..f442b767 --- /dev/null +++ b/cmd/petstore-builder/go.sum @@ -0,0 +1,34 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/apps/petstore-builder/main.go b/cmd/petstore-builder/main.go similarity index 100% rename from apps/petstore-builder/main.go rename to cmd/petstore-builder/main.go diff --git a/apps/petstore-builder/petstore-v2.go b/cmd/petstore-builder/petstore-v2.go similarity index 100% rename from apps/petstore-builder/petstore-v2.go rename to cmd/petstore-builder/petstore-v2.go diff --git a/apps/petstore-builder/petstore-v3.go b/cmd/petstore-builder/petstore-v3.go similarity index 100% rename from apps/petstore-builder/petstore-v3.go rename to cmd/petstore-builder/petstore-v3.go diff --git a/apps/protoc-gen-jsonschema/README.md b/cmd/protoc-gen-jsonschema/README.md similarity index 76% rename from apps/protoc-gen-jsonschema/README.md rename to cmd/protoc-gen-jsonschema/README.md index 40a7d75e..62e87d01 100644 --- a/apps/protoc-gen-jsonschema/README.md +++ b/cmd/protoc-gen-jsonschema/README.md @@ -5,8 +5,7 @@ JSON Schemas for Protocol Buffer messages. Installation: - go get github.com/google/gnostic - go install github.com/google/gnostic/apps/protoc-gen-jsonschema + go install github.com/google/gnostic/cmd/protoc-gen-jsonschema Usage: diff --git a/apps/protoc-gen-jsonschema/examples/google/api/annotations.proto b/cmd/protoc-gen-jsonschema/examples/google/api/annotations.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/api/annotations.proto rename to cmd/protoc-gen-jsonschema/examples/google/api/annotations.proto diff --git a/apps/protoc-gen-jsonschema/examples/google/api/client.proto b/cmd/protoc-gen-jsonschema/examples/google/api/client.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/api/client.proto rename to cmd/protoc-gen-jsonschema/examples/google/api/client.proto diff --git a/apps/protoc-gen-jsonschema/examples/google/api/field_behavior.proto b/cmd/protoc-gen-jsonschema/examples/google/api/field_behavior.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/api/field_behavior.proto rename to cmd/protoc-gen-jsonschema/examples/google/api/field_behavior.proto diff --git a/apps/protoc-gen-jsonschema/examples/google/api/http.proto b/cmd/protoc-gen-jsonschema/examples/google/api/http.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/api/http.proto rename to cmd/protoc-gen-jsonschema/examples/google/api/http.proto diff --git a/apps/protoc-gen-jsonschema/examples/google/api/resource.proto b/cmd/protoc-gen-jsonschema/examples/google/api/resource.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/api/resource.proto rename to cmd/protoc-gen-jsonschema/examples/google/api/resource.proto diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/library.proto b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/library.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/library.proto rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/library.proto diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Book.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Book.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Book.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Book.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/CreateShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/DeleteShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/GetShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksResponse.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksResponse.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksResponse.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListBooksResponse.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesResponse.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesResponse.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesResponse.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/ListShelvesResponse.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MergeShelvesRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MergeShelvesRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MergeShelvesRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MergeShelvesRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MoveBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MoveBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MoveBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/MoveBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Shelf.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Shelf.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Shelf.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/Shelf.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/UpdateBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/UpdateBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/UpdateBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_json/UpdateBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Book.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Book.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Book.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Book.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/CreateShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/DeleteShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/GetShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksResponse.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksResponse.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksResponse.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListBooksResponse.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesResponse.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesResponse.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesResponse.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/ListShelvesResponse.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MergeShelvesRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MergeShelvesRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MergeShelvesRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MergeShelvesRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MoveBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MoveBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MoveBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/MoveBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Shelf.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Shelf.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Shelf.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/Shelf.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/UpdateBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/UpdateBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/UpdateBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/schemas_proto/UpdateBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Book.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Book.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Book.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Book.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/CreateShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/DeleteShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetShelfRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetShelfRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetShelfRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/GetShelfRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksResponse.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksResponse.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksResponse.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListBooksResponse.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesResponse.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesResponse.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesResponse.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/ListShelvesResponse.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MergeShelvesRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MergeShelvesRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MergeShelvesRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MergeShelvesRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MoveBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MoveBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MoveBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/MoveBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Shelf.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Shelf.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Shelf.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/Shelf.json diff --git a/apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/UpdateBookRequest.json b/cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/UpdateBookRequest.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/UpdateBookRequest.json rename to cmd/protoc-gen-jsonschema/examples/google/example/library/v1/testdata_json/UpdateBookRequest.json diff --git a/apps/protoc-gen-jsonschema/examples/google/type/date.proto b/cmd/protoc-gen-jsonschema/examples/google/type/date.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/type/date.proto rename to cmd/protoc-gen-jsonschema/examples/google/type/date.proto diff --git a/apps/protoc-gen-jsonschema/examples/google/type/datetime.proto b/cmd/protoc-gen-jsonschema/examples/google/type/datetime.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/google/type/datetime.proto rename to cmd/protoc-gen-jsonschema/examples/google/type/datetime.proto diff --git a/apps/protoc-gen-jsonschema/examples/tests/embedded/message.proto b/cmd/protoc-gen-jsonschema/examples/tests/embedded/message.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/embedded/message.proto rename to cmd/protoc-gen-jsonschema/examples/tests/embedded/message.proto diff --git a/apps/protoc-gen-jsonschema/examples/tests/embedded/schemas_json/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/embedded/schemas_json/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/embedded/schemas_json/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/embedded/schemas_json/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/embedded/schemas_proto/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/embedded/schemas_proto/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/embedded/schemas_proto/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/embedded/schemas_proto/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/embedded/testdata_json/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/embedded/testdata_json/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/embedded/testdata_json/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/embedded/testdata_json/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/jsonoptions/message.proto b/cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/message.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/jsonoptions/message.proto rename to cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/message.proto diff --git a/apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message2.json b/cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message2.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message2.json rename to cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_json/Message2.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message2.json b/cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message2.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message2.json rename to cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/schemas_proto/Message2.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message2.json b/cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message2.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message2.json rename to cmd/protoc-gen-jsonschema/examples/tests/jsonoptions/testdata_json/Message2.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/mapfields/message.proto b/cmd/protoc-gen-jsonschema/examples/tests/mapfields/message.proto similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/mapfields/message.proto rename to cmd/protoc-gen-jsonschema/examples/tests/mapfields/message.proto diff --git a/apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/AnotherMessage.json b/cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/AnotherMessage.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/AnotherMessage.json rename to cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/AnotherMessage.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_json/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/AnotherMessage.json b/cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/AnotherMessage.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/AnotherMessage.json rename to cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/AnotherMessage.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/mapfields/schemas_proto/Message.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/AnotherMessage.json b/cmd/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/AnotherMessage.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/AnotherMessage.json rename to cmd/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/AnotherMessage.json diff --git a/apps/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/Message.json b/cmd/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/Message.json similarity index 100% rename from apps/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/Message.json rename to cmd/protoc-gen-jsonschema/examples/tests/mapfields/testdata_json/Message.json diff --git a/apps/protoc-gen-jsonschema/generator/json-schema.go b/cmd/protoc-gen-jsonschema/generator/json-schema.go similarity index 100% rename from apps/protoc-gen-jsonschema/generator/json-schema.go rename to cmd/protoc-gen-jsonschema/generator/json-schema.go diff --git a/cmd/protoc-gen-jsonschema/go.mod b/cmd/protoc-gen-jsonschema/go.mod new file mode 100644 index 00000000..c723b1d2 --- /dev/null +++ b/cmd/protoc-gen-jsonschema/go.mod @@ -0,0 +1,12 @@ +module github.com/google/gnostic/cmd/protoc-gen-jsonschema + +go 1.12 + +require ( + github.com/flowstack/go-jsonschema v0.1.0 + github.com/google/gnostic v0.0.0 + google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb + google.golang.org/protobuf v1.27.1 +) + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/protoc-gen-jsonschema/go.sum b/cmd/protoc-gen-jsonschema/go.sum new file mode 100644 index 00000000..7a26b188 --- /dev/null +++ b/cmd/protoc-gen-jsonschema/go.sum @@ -0,0 +1,153 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs= +github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/flowstack/go-jsonschema v0.1.0 h1:0wh0fD6km+RIwFhGBk56jzUSveW3rV8m/mo+iWQLaIg= +github.com/flowstack/go-jsonschema v0.1.0/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d h1:20cMwl2fHAzkJMEA+8J4JgqBQcQGzbisXo31MIeenXI= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb h1:ZrsicilzPCS/Xr8qtBZZLpy4P9TYXAfl49ctG1/5tgw= +google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3 h1:fvjTMHxHEw/mxHbtzPi3JCcKXQRAnQTBRo6YCJSVHKI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/apps/protoc-gen-jsonschema/main.go b/cmd/protoc-gen-jsonschema/main.go similarity index 95% rename from apps/protoc-gen-jsonschema/main.go rename to cmd/protoc-gen-jsonschema/main.go index a1197dc7..01a1d0a1 100644 --- a/apps/protoc-gen-jsonschema/main.go +++ b/cmd/protoc-gen-jsonschema/main.go @@ -18,7 +18,7 @@ package main import ( "flag" - "github.com/google/gnostic/apps/protoc-gen-jsonschema/generator" + "github.com/google/gnostic/cmd/protoc-gen-jsonschema/generator" "google.golang.org/protobuf/compiler/protogen" "google.golang.org/protobuf/types/pluginpb" ) diff --git a/apps/protoc-gen-jsonschema/plugin_test.go b/cmd/protoc-gen-jsonschema/plugin_test.go similarity index 100% rename from apps/protoc-gen-jsonschema/plugin_test.go rename to cmd/protoc-gen-jsonschema/plugin_test.go diff --git a/apps/protoc-gen-openapi/README.md b/cmd/protoc-gen-openapi/README.md similarity index 79% rename from apps/protoc-gen-openapi/README.md rename to cmd/protoc-gen-openapi/README.md index 3f803760..e2867d0f 100644 --- a/apps/protoc-gen-openapi/README.md +++ b/cmd/protoc-gen-openapi/README.md @@ -6,8 +6,7 @@ Protocol Buffer service. Installation: - go get github.com/google/gnostic - go install github.com/google/gnostic/apps/protoc-gen-openapi + go install github.com/google/gnostic/cmd/protoc-gen-openapi Usage: diff --git a/apps/protoc-gen-openapi/examples/google/api/annotations.proto b/cmd/protoc-gen-openapi/examples/google/api/annotations.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/api/annotations.proto rename to cmd/protoc-gen-openapi/examples/google/api/annotations.proto diff --git a/apps/protoc-gen-openapi/examples/google/api/client.proto b/cmd/protoc-gen-openapi/examples/google/api/client.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/api/client.proto rename to cmd/protoc-gen-openapi/examples/google/api/client.proto diff --git a/apps/protoc-gen-openapi/examples/google/api/field_behavior.proto b/cmd/protoc-gen-openapi/examples/google/api/field_behavior.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/api/field_behavior.proto rename to cmd/protoc-gen-openapi/examples/google/api/field_behavior.proto diff --git a/apps/protoc-gen-openapi/examples/google/api/http.proto b/cmd/protoc-gen-openapi/examples/google/api/http.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/api/http.proto rename to cmd/protoc-gen-openapi/examples/google/api/http.proto diff --git a/apps/protoc-gen-openapi/examples/google/api/resource.proto b/cmd/protoc-gen-openapi/examples/google/api/resource.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/api/resource.proto rename to cmd/protoc-gen-openapi/examples/google/api/resource.proto diff --git a/apps/protoc-gen-openapi/examples/google/example/library/v1/library.proto b/cmd/protoc-gen-openapi/examples/google/example/library/v1/library.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/example/library/v1/library.proto rename to cmd/protoc-gen-openapi/examples/google/example/library/v1/library.proto diff --git a/apps/protoc-gen-openapi/examples/google/example/library/v1/openapi.yaml b/cmd/protoc-gen-openapi/examples/google/example/library/v1/openapi.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/google/example/library/v1/openapi.yaml rename to cmd/protoc-gen-openapi/examples/google/example/library/v1/openapi.yaml diff --git a/apps/protoc-gen-openapi/examples/google/example/library/v1/openapi_json.yaml b/cmd/protoc-gen-openapi/examples/google/example/library/v1/openapi_json.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/google/example/library/v1/openapi_json.yaml rename to cmd/protoc-gen-openapi/examples/google/example/library/v1/openapi_json.yaml diff --git a/apps/protoc-gen-openapi/examples/google/type/date.proto b/cmd/protoc-gen-openapi/examples/google/type/date.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/type/date.proto rename to cmd/protoc-gen-openapi/examples/google/type/date.proto diff --git a/apps/protoc-gen-openapi/examples/google/type/datetime.proto b/cmd/protoc-gen-openapi/examples/google/type/datetime.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/google/type/datetime.proto rename to cmd/protoc-gen-openapi/examples/google/type/datetime.proto diff --git a/apps/protoc-gen-openapi/examples/tests/bodymapping/message.proto b/cmd/protoc-gen-openapi/examples/tests/bodymapping/message.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/bodymapping/message.proto rename to cmd/protoc-gen-openapi/examples/tests/bodymapping/message.proto diff --git a/apps/protoc-gen-openapi/examples/tests/bodymapping/openapi.yaml b/cmd/protoc-gen-openapi/examples/tests/bodymapping/openapi.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/bodymapping/openapi.yaml rename to cmd/protoc-gen-openapi/examples/tests/bodymapping/openapi.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/bodymapping/openapi_json.yaml b/cmd/protoc-gen-openapi/examples/tests/bodymapping/openapi_json.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/bodymapping/openapi_json.yaml rename to cmd/protoc-gen-openapi/examples/tests/bodymapping/openapi_json.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/jsonoptions/message.proto b/cmd/protoc-gen-openapi/examples/tests/jsonoptions/message.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/jsonoptions/message.proto rename to cmd/protoc-gen-openapi/examples/tests/jsonoptions/message.proto diff --git a/apps/protoc-gen-openapi/examples/tests/jsonoptions/openapi.yaml b/cmd/protoc-gen-openapi/examples/tests/jsonoptions/openapi.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/jsonoptions/openapi.yaml rename to cmd/protoc-gen-openapi/examples/tests/jsonoptions/openapi.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/jsonoptions/openapi_json.yaml b/cmd/protoc-gen-openapi/examples/tests/jsonoptions/openapi_json.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/jsonoptions/openapi_json.yaml rename to cmd/protoc-gen-openapi/examples/tests/jsonoptions/openapi_json.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/mapfields/message.proto b/cmd/protoc-gen-openapi/examples/tests/mapfields/message.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/mapfields/message.proto rename to cmd/protoc-gen-openapi/examples/tests/mapfields/message.proto diff --git a/apps/protoc-gen-openapi/examples/tests/mapfields/openapi.yaml b/cmd/protoc-gen-openapi/examples/tests/mapfields/openapi.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/mapfields/openapi.yaml rename to cmd/protoc-gen-openapi/examples/tests/mapfields/openapi.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/mapfields/openapi_json.yaml b/cmd/protoc-gen-openapi/examples/tests/mapfields/openapi_json.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/mapfields/openapi_json.yaml rename to cmd/protoc-gen-openapi/examples/tests/mapfields/openapi_json.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/noannotations/message.proto b/cmd/protoc-gen-openapi/examples/tests/noannotations/message.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/noannotations/message.proto rename to cmd/protoc-gen-openapi/examples/tests/noannotations/message.proto diff --git a/apps/protoc-gen-openapi/examples/tests/noannotations/openapi.yaml b/cmd/protoc-gen-openapi/examples/tests/noannotations/openapi.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/noannotations/openapi.yaml rename to cmd/protoc-gen-openapi/examples/tests/noannotations/openapi.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/noannotations/openapi_json.yaml b/cmd/protoc-gen-openapi/examples/tests/noannotations/openapi_json.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/noannotations/openapi_json.yaml rename to cmd/protoc-gen-openapi/examples/tests/noannotations/openapi_json.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/pathparams/message.proto b/cmd/protoc-gen-openapi/examples/tests/pathparams/message.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/pathparams/message.proto rename to cmd/protoc-gen-openapi/examples/tests/pathparams/message.proto diff --git a/apps/protoc-gen-openapi/examples/tests/pathparams/openapi.yaml b/cmd/protoc-gen-openapi/examples/tests/pathparams/openapi.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/pathparams/openapi.yaml rename to cmd/protoc-gen-openapi/examples/tests/pathparams/openapi.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/pathparams/openapi_json.yaml b/cmd/protoc-gen-openapi/examples/tests/pathparams/openapi_json.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/pathparams/openapi_json.yaml rename to cmd/protoc-gen-openapi/examples/tests/pathparams/openapi_json.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/protobuftypes/message.proto b/cmd/protoc-gen-openapi/examples/tests/protobuftypes/message.proto similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/protobuftypes/message.proto rename to cmd/protoc-gen-openapi/examples/tests/protobuftypes/message.proto diff --git a/apps/protoc-gen-openapi/examples/tests/protobuftypes/openapi.yaml b/cmd/protoc-gen-openapi/examples/tests/protobuftypes/openapi.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/protobuftypes/openapi.yaml rename to cmd/protoc-gen-openapi/examples/tests/protobuftypes/openapi.yaml diff --git a/apps/protoc-gen-openapi/examples/tests/protobuftypes/openapi_json.yaml b/cmd/protoc-gen-openapi/examples/tests/protobuftypes/openapi_json.yaml similarity index 100% rename from apps/protoc-gen-openapi/examples/tests/protobuftypes/openapi_json.yaml rename to cmd/protoc-gen-openapi/examples/tests/protobuftypes/openapi_json.yaml diff --git a/apps/protoc-gen-openapi/generator/openapi-v3.go b/cmd/protoc-gen-openapi/generator/openapi-v3.go similarity index 100% rename from apps/protoc-gen-openapi/generator/openapi-v3.go rename to cmd/protoc-gen-openapi/generator/openapi-v3.go diff --git a/cmd/protoc-gen-openapi/go.mod b/cmd/protoc-gen-openapi/go.mod new file mode 100644 index 00000000..be8f7a71 --- /dev/null +++ b/cmd/protoc-gen-openapi/go.mod @@ -0,0 +1,11 @@ +module github.com/google/gnostic/cmd/protoc-gen-openapi + +go 1.12 + +require ( + github.com/google/gnostic v0.0.0 + google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb + google.golang.org/protobuf v1.27.1 +) + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/protoc-gen-openapi/go.sum b/cmd/protoc-gen-openapi/go.sum new file mode 100644 index 00000000..ec61c4d9 --- /dev/null +++ b/cmd/protoc-gen-openapi/go.sum @@ -0,0 +1,134 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb h1:ZrsicilzPCS/Xr8qtBZZLpy4P9TYXAfl49ctG1/5tgw= +google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/apps/protoc-gen-openapi/main.go b/cmd/protoc-gen-openapi/main.go similarity index 96% rename from apps/protoc-gen-openapi/main.go rename to cmd/protoc-gen-openapi/main.go index 9958d7ec..ab95f9f6 100644 --- a/apps/protoc-gen-openapi/main.go +++ b/cmd/protoc-gen-openapi/main.go @@ -18,7 +18,7 @@ package main import ( "flag" - "github.com/google/gnostic/apps/protoc-gen-openapi/generator" + "github.com/google/gnostic/cmd/protoc-gen-openapi/generator" "google.golang.org/protobuf/compiler/protogen" "google.golang.org/protobuf/types/pluginpb" ) diff --git a/apps/protoc-gen-openapi/plugin_test.go b/cmd/protoc-gen-openapi/plugin_test.go similarity index 100% rename from apps/protoc-gen-openapi/plugin_test.go rename to cmd/protoc-gen-openapi/plugin_test.go diff --git a/apps/report-messages/README.md b/cmd/report-messages/README.md similarity index 100% rename from apps/report-messages/README.md rename to cmd/report-messages/README.md diff --git a/cmd/report-messages/go.mod b/cmd/report-messages/go.mod new file mode 100644 index 00000000..2942bf1a --- /dev/null +++ b/cmd/report-messages/go.mod @@ -0,0 +1,10 @@ +module github.com/google/gnostic/cmd/report-messages + +go 1.12 + +require ( + github.com/golang/protobuf v1.5.2 + github.com/google/gnostic v0.0.0 +) + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/report-messages/go.sum b/cmd/report-messages/go.sum new file mode 100644 index 00000000..f442b767 --- /dev/null +++ b/cmd/report-messages/go.sum @@ -0,0 +1,34 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/apps/report-messages/main.go b/cmd/report-messages/main.go similarity index 100% rename from apps/report-messages/main.go rename to cmd/report-messages/main.go diff --git a/apps/report/README.md b/cmd/report/README.md similarity index 100% rename from apps/report/README.md rename to cmd/report/README.md diff --git a/cmd/report/go.mod b/cmd/report/go.mod new file mode 100644 index 00000000..822e6439 --- /dev/null +++ b/cmd/report/go.mod @@ -0,0 +1,10 @@ +module github.com/google/gnostic/cmd/report + +go 1.12 + +require ( + github.com/golang/protobuf v1.5.2 + github.com/google/gnostic v0.0.0 +) + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/report/go.sum b/cmd/report/go.sum new file mode 100644 index 00000000..f442b767 --- /dev/null +++ b/cmd/report/go.sum @@ -0,0 +1,34 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/apps/report/main.go b/cmd/report/main.go similarity index 100% rename from apps/report/main.go rename to cmd/report/main.go diff --git a/apps/vocabulary-operations/README.md b/cmd/vocabulary-operations/README.md similarity index 100% rename from apps/vocabulary-operations/README.md rename to cmd/vocabulary-operations/README.md diff --git a/cmd/vocabulary-operations/go.mod b/cmd/vocabulary-operations/go.mod new file mode 100644 index 00000000..fc26b9a2 --- /dev/null +++ b/cmd/vocabulary-operations/go.mod @@ -0,0 +1,10 @@ +module github.com/google/gnostic/cmd/vocabulary-operations + +go 1.12 + +require ( + github.com/golang/protobuf v1.5.2 + github.com/google/gnostic v0.0.0 +) + +replace github.com/google/gnostic v0.0.0 => ../.. diff --git a/cmd/vocabulary-operations/go.sum b/cmd/vocabulary-operations/go.sum new file mode 100644 index 00000000..f442b767 --- /dev/null +++ b/cmd/vocabulary-operations/go.sum @@ -0,0 +1,34 @@ +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/apps/vocabulary-operations/main.go b/cmd/vocabulary-operations/main.go similarity index 100% rename from apps/vocabulary-operations/main.go rename to cmd/vocabulary-operations/main.go diff --git a/go.mod b/go.mod index 6f29a39f..045d839c 100644 --- a/go.mod +++ b/go.mod @@ -3,14 +3,12 @@ module github.com/google/gnostic go 1.12 require ( - github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 - github.com/flowstack/go-jsonschema v0.1.2-0.20220104092834-36c9f7194585 + github.com/davecgh/go-spew v1.1.1 // indirect github.com/golang/protobuf v1.5.2 github.com/kr/pretty v0.2.0 // indirect github.com/stoewer/go-strcase v1.2.0 golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect - google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154 google.golang.org/protobuf v1.26.0 gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 diff --git a/go.sum b/go.sum index 53fb0d3d..e17ad87d 100644 --- a/go.sum +++ b/go.sum @@ -1,39 +1,9 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs= -github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= -github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 h1:bWDMxwH3px2JBh6AyO7hdCn/PkvCZXii8TGj7sbtEbQ= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/flowstack/go-jsonschema v0.0.0-20211209084258-c17707834089 h1:fitJoueZBxhxndujAiIEGTJ7J8+EDQN72ZDb2fuJPpA= -github.com/flowstack/go-jsonschema v0.0.0-20211209084258-c17707834089/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0= -github.com/flowstack/go-jsonschema v0.1.1 h1:dCrjGJRXIlbDsLAgTJZTjhwUJnnxVWl1OgNyYh5nyDc= -github.com/flowstack/go-jsonschema v0.1.1/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0= -github.com/flowstack/go-jsonschema v0.1.2-0.20220104092834-36c9f7194585 h1:5tr8qTErHQ8K5a1tDhb4lBoMaN5Ky69tr+tcqJ+dtbw= -github.com/flowstack/go-jsonschema v0.1.2-0.20220104092834-36c9f7194585/go.mod h1:yL7fNggx1o8rm9RlgXv7hTBWxdBM0rVwpMwimd3F3N0= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= -github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= -github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= -github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= -github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= -github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= @@ -43,69 +13,21 @@ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/stoewer/go-strcase v1.2.0 h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU= github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c= -github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= -github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= -github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d h1:20cMwl2fHAzkJMEA+8J4JgqBQcQGzbisXo31MIeenXI= -golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.6 h1:aRYxNxv6iGQlyVaZmk6ZgYEDa+Jg18DxebPSrd6bg1M= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 h1:5Beo0mZN8dRzgrMMkDp0jc8YXQKx9DiJ2k1dkvGsn5A= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154 h1:bFFRpT+e8JJVY7lMMfvezL1ZIwqiwmPl2bsE2yx4HqM= -google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= -google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= -google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= -google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= -google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= -google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= @@ -116,5 +38,3 @@ gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 h1:tQIYjPdBoyREyB9XMu+nnTclpTYkz2zFM+lzLJFO4gQ= gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=