hitbox-http 0.2.1

Cacheable HTTP Request and Response
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";

package test;

message TestMessage {
    int32 foo = 1;
    string name = 2;
    repeated string tags = 3;
    map<string, string> metadata = 4;
    oneof test_oneof {
        string text = 5;
        int64 number = 6;
    }
}