First draft of the remote API

This commit is contained in:
emeric
2014-03-25 14:08:51 +01:00
parent ce14803964
commit cbebcf63f0
16 changed files with 16922 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import "common.proto";
message AuthRequest
{
required string user_name = 1;
required string user_password = 2;
}
message AuthResponse
{
required Error error = 1;
}