celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto3";
package celp.protobuf.cm;
import "celp_header.proto";
option optimize_for = SPEED;

message RUInboundTrigger {

    // Base header from CELP
    celp.protobuf.Header header = 1;

    // URL of the remote update package
    string url = 3;

    // Checksum (SHA256) of the update package
    string checksum = 5;

}