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
// CELP System Event protobufs
syntax = "proto3";
package celp.protobuf.se;
option optimize_for = SPEED;

//
// System Event details message
//

message KeepAlive {
    // Value of the ticks
    uint64 ticks = 1;
}