Initial commit.

This commit is contained in:
Karolis2011
2019-08-17 21:55:05 +03:00
parent eaedeb14ae
commit 8ca5a24065
6 changed files with 439 additions and 2 deletions

19
generic.proto Normal file
View File

@@ -0,0 +1,19 @@
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 {
}