summaryrefslogtreecommitdiff
path: root/data/vycall.proto
blob: 0037aa7dff39fd4e23df25c0f5cb912afc56cb35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
message Status {
    required bool success = 1;
    required string out = 2;
}

message Call {
    required string script_name = 1;
    optional string tag_value = 2;
    optional string arg_value = 3;
    optional Status reply = 4;
}

message Commit {
    required string session_id = 1;
    required bool dry_run = 4;
    required bool atomic = 5;
    required bool background = 6;

    optional Status init = 7;
    repeated Call calls = 8;
}