Created
July 2, 2020 01:22
-
-
Save deckarep/6d057cbeac507061a371ea98fe1fdffd to your computer and use it in GitHub Desktop.
Protobuf Talk: Dog schema definition
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
syntax = "proto2"; | |
option go_package = "main"; | |
message Dog { | |
required int32 owner_id= 1; | |
optional string breed = 2; | |
optional float height_in = 3; | |
optional string color = 4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment