-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.proto
51 lines (39 loc) · 1 KB
/
info.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
syntax = "proto3";
package openmind;
option csharp_namespace = "OpenMind";
service InfoService {
/**
* List the version number for the Summit Server
*/
rpc VersionNumber (VersionNumberRequest) returns (VersionNumberResponse);
/**
* List supported devices.
*/
rpc SupportedDevices (SupportedDevicesRequest) returns (SupportedDevicesResponse);
/**
* Inspect Repository.
*/
rpc InspectRepository (InspectRepositoryRequest) returns (InspectRepositoryResponse);
}
message VersionNumberRequest {}
message VersionNumberResponse {
/**
String with the version number for the Summit Server
*/
string version_number = 1;
}
message SupportedDevicesRequest {}
message SupportedDevicesResponse {
/**
* List with supported devices.
*/
repeated string supported_devices = 1;
}
message InspectRepositoryRequest{
}
message InspectRepositoryResponse{
/**
* List of URI's in repository
*/
repeated string repo_uri = 1;
}