celp-sdk 0.1.13

This package has been created to provide a rust SDK containing common functionality
syntax = "proto3";
package celp.protobuf.svc;
import "celp_header.proto";
option optimize_for = SPEED;

message MQTTRequest {
    enum RequestType {
        GET = 0x0;
        PUT = 0x1;
    }

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

    // Type of request to be made
    RequestType request_type = 3;

    // Name of the file to upload/download
    string filename = 5;
}