Created
February 2, 2022 08:23
-
-
Save rezaramadhanirianto/0cefaf8a903b661d0405faf3346d4fa0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| syntax="proto3"; | |
| package output; | |
| option go_package = "/output"; | |
| import "google/protobuf/empty.proto"; | |
| message OutputRequest{ | |
| string title = 1; | |
| } | |
| message Output{ | |
| string id = 1; | |
| string title = 2; | |
| } | |
| service OutputService{ | |
| rpc SendOutput(OutputRequest) returns (google.protobuf.Empty) {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment