16 lines
283 B
Protocol Buffer
16 lines
283 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package quixos;
|
|
|
|
message PackageDescriptor {
|
|
string package_id = 1;
|
|
string package_revision_id = 2;
|
|
string runtime_protocol_version = 3;
|
|
repeated RuntimeExport exports = 4;
|
|
}
|
|
|
|
message RuntimeExport {
|
|
string export_id = 1;
|
|
string runtime_symbol = 2;
|
|
}
|