Dinesh Belwalkar | 4122960 | 2019-06-21 16:58:06 +0000 | [diff] [blame^] | 1 | syntax = "proto3"; |
2 | |||||
3 | |||||
4 | package importer; | ||||
5 | |||||
6 | import "google/protobuf/empty.proto"; | ||||
7 | //import "google/api/annotations.proto"; | ||||
8 | |||||
9 | |||||
10 | message DeviceInfo { | ||||
11 | string ip_address = 1; | ||||
12 | uint32 frequency = 2; | ||||
13 | } | ||||
14 | |||||
15 | |||||
16 | service device_management { | ||||
17 | rpc SendDeviceInfo(DeviceInfo) | ||||
18 | returns (google.protobuf.Empty) {} | ||||
19 | } | ||||
20 | |||||
21 |