blob: 5d20c4dfc3894f7bbe4905ae2947958d4a2174a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
syntax = "proto3";
package unit.containers.v0;
service Ormos {
rpc ListUsbDevices (ListUsbDevicesRequest) returns (ListUsbDevicesResponse) {}
}
message ListUsbDevicesRequest {}
message ListUsbDevicesResponse {
repeated UsbDevice devices = 1;
}
message UsbDevice {
string device_path = 1;
bool is_mounted = 2;
string mount_point = 3;
}
|