auth 0.1.0

A test develop mode for CITA
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

syntax = "proto3";

package auth;

service authority {
  rpc auth (Transation) returns (State) {}
}

message Transation {
  string tx = 1;
}

message State {
  string state = 1;
}