aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorCarlos Sosa <gnusosa@gnusosa.net>2020-06-22 12:33:53 -0700
committerCarlos Sosa <gnusosa@gnusosa.net>2020-06-22 12:33:53 -0700
commiteb76915d5e82563bec0c77f280a1010b1c715e43 (patch)
treee6de45fa4c5e9ec9632d0dc4f71b5a80bdecde5b /api
parentbf09eb82fedfaf3cfa4fcc4b0e978b3feb71701b (diff)
Fix Item proto structHEADmaster
Diffstat (limited to 'api')
-rw-r--r--api/api.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/api.proto b/api/api.proto
index 796e34b..465a0c5 100644
--- a/api/api.proto
+++ b/api/api.proto
@@ -2,17 +2,18 @@ syntax = "proto3";
package api;
import "google/api/annotations.proto";
+import "google/protobuf/timestamp.proto";
message PingMessage {
string greeting = 1;
}
message Item {
- int32 id = 1
+ int32 id = 1;
string field = 2;
string field2 = 3;
google.protobuf.Timestamp created = 5;
- google.protobuf.Timestamp last_updated = 5;
+ google.protobuf.Timestamp last_updated = 6;
}
service Ping {