10 lines
107 B
Protocol Buffer
10 lines
107 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package Proto.Auth;
|
||
|
|
||
|
message Response
|
||
|
{
|
||
|
bytes signature = 1;
|
||
|
bytes publickey = 2;
|
||
|
}
|