mirror of https://github.com/docker/cli.git
20 lines
287 B
Protocol Buffer
20 lines
287 B
Protocol Buffer
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;
|
|
}
|