You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
287 B
Protocol Buffer
20 lines
287 B
Protocol Buffer
6 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package moby.filesync.v1;
|
||
|
|
||
|
option go_package = "auth";
|
||
|
|
||
|
service Auth{
|
||
|
rpc Credentials(CredentialsRequest) returns (CredentialsResponse);
|
||
|
}
|
||
|
|
||
|
|
||
|
message CredentialsRequest {
|
||
|
string Host = 1;
|
||
|
}
|
||
|
|
||
|
message CredentialsResponse {
|
||
|
string Username = 1;
|
||
|
string Secret = 2;
|
||
|
}
|