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 InjectionRoutingRequest {
    // Base header from CELP
    celp.protobuf.Header header = 1;

    // Topic to which the payload must be sent to.
    string topic = 3;

    // Payload to be published to the topic.
    bytes payload = 5;
}