aliri_tower 0.6.1

Tower middleware for interacting with `aliri` authorities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

package aliri.example;

message CounterRequest {
    sint32 change = 1;
}

message CounterResponse {
    sint32 current_value = 1;
}

service CounterService {
    rpc Update(CounterRequest) returns (CounterResponse);
}