forked from pactflow/pact-protobuf-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
conflicting names when package is implicit
- Loading branch information
1 parent
0cb87dc
commit 0fc95d2
Showing
3 changed files
with
26 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
// Copyright 2015 gRPC authors. | ||
// | ||
syntax = "proto3"; | ||
|
||
option go_package = "github.com/pact-foundation/pact-go/v2/examples/grpc/primary"; | ||
option java_multiple_files = true; | ||
option java_package = "io.grpc.examples.primary"; | ||
option java_outer_classname = "PrimaryProto"; | ||
|
||
import "imported/imported.proto"; | ||
|
||
package primary; | ||
|
||
|
||
// A latitude-longitude rectangle, represented as two diagonally opposite | ||
// points "lo" and "hi". | ||
message Rectangle { | ||
// One corner of the rectangle. | ||
imported.Point lo = 1; | ||
|
||
// The other corner of the rectangle. | ||
imported.Point hi = 2; | ||
} |