mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: crenshaw-dev <350466+crenshaw-dev@users.noreply.github.com>
21 lines
359 B
Protocol Buffer
21 lines
359 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "github.com/argoproj/argo-cd/v3/util/askpass";
|
|
|
|
package askpass;
|
|
|
|
message CredentialsRequest {
|
|
string nonce = 1;
|
|
}
|
|
|
|
message CredentialsResponse {
|
|
string username = 1;
|
|
string password = 2;
|
|
}
|
|
|
|
|
|
// AskPassService
|
|
service AskPassService {
|
|
rpc GetCredentials(CredentialsRequest) returns (CredentialsResponse) {
|
|
}
|
|
}
|