celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
// CELP System Event protobufs
syntax = "proto3";
package celp.protobuf.se;
option optimize_for = SPEED;

//
// System Event details message
//

message Reboot {
    // The time the Reboot event was issued (in ms since boot)
    uint64 issue_time = 1;

    // The time between issue time and the reboot occuring (in ms)
    uint64 within = 3;

    // The reason for the reboot
    string reason = 5;
}