diff options
| author | Carlos Sosa <gnusosa@gnusosa.net> | 2020-06-22 12:33:53 -0700 |
|---|---|---|
| committer | Carlos Sosa <gnusosa@gnusosa.net> | 2020-06-22 12:33:53 -0700 |
| commit | eb76915d5e82563bec0c77f280a1010b1c715e43 (patch) | |
| tree | e6de45fa4c5e9ec9632d0dc4f71b5a80bdecde5b /api/api.proto | |
| parent | bf09eb82fedfaf3cfa4fcc4b0e978b3feb71701b (diff) | |
Diffstat (limited to 'api/api.proto')
| -rw-r--r-- | api/api.proto | 5 |
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 { |
