Fixed options bug and proto indenting

This commit is contained in:
Milos Gajdos
2019-09-29 15:03:21 +01:00
parent 8417361bce
commit 204c7d1fcf
2 changed files with 9 additions and 7 deletions

View File

@@ -12,11 +12,11 @@ service Registry {
// Service represents a go-micro service
message Service {
string name = 1;
string version = 2;
map<string,string> metadata = 3;
repeated Endpoint endpoints = 4;
repeated Node nodes = 5;
string name = 1;
string version = 2;
map<string,string> metadata = 3;
repeated Endpoint endpoints = 4;
repeated Node nodes = 5;
Options options = 6;
}