blob: 45ab7d5b9e0c89fe351b00cc085f68a5a6b4b273 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package NYqlMountConfig;
option java_package = "ru.yandex.kikimr.proto";
message TMountPoint {
required string RootAlias = 1;
required string MountPoint = 2;
optional bool Library = 3 [default = false];
}
message TMountConfig {
repeated TMountPoint MountPoints = 1;
}
|