Files
A.S.S.-RPC-protobuffs/generic.proto
2019-08-17 21:55:05 +03:00

20 lines
246 B
Protocol Buffer

syntax = "proto3";
option csharp_namespace = "ASS.API";
package Generic;
// The request message containing the user's name.
message AuthData {
string token = 1;
}
message EmptyRequest {
AuthData auth = 1;
}
message EmptyReply {
}