summaryrefslogtreecommitdiff
path: root/proto/buildinfo.proto
blob: 2cf9dabca5f6d44588a3265ae57274ca77d7d192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
syntax = "proto3";

package unit.info.v0;

message Distro {
    string name = 1;
    string version = 2;
}

message Layer {
    string name = 1;
    string branch = 2;
    string revision = 3;
}

message BuildInfo {
    Distro distro = 1;
    repeated Layer layers = 2;
}