summaryrefslogtreecommitdiff
path: root/proto/swversions.proto
blob: bf0ffb22b388c141e7d77223ce94cc91123d0f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
syntax = "proto3";

package unit.info.v0;

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

message SwVersions {
    repeated SwVersion versions = 1;
}