northwind-weather-api / libs /proto /azureapi.proto
mishrabp's picture
Upload folder using huggingface_hub
1e3bf12 verified
syntax = "proto3";
package azureapi;
service AzureApiService {
rpc readSecret (SecretRequest) returns (SecretResponse);
}
message SecretRequest {
string kvName = 1;
string secretName = 2;
}
message SecretResponse {
string kvName = 1;
string secretName = 2;
string secretValue = 3;
}
message ErrorResponse {
string error = 1;
}