bitbroker 0.1.0

A language agnostic message broker designed for real-time communication.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
syntax = "proto3";

package bitbroker.initial;

message InitialMessageProto {
    int32 botIndex = 1;
    string botName = 10;
}

message InitialMessageBatchProto {
    repeated InitialMessageProto initialMessages = 1;
}