aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
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 {