mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-04-20 09:46:45 +00:00
15 lines
217 B
Protocol Buffer
15 lines
217 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./env";
|
|
|
|
package env;
|
|
|
|
message EnvRequest {}
|
|
|
|
message EnvResponse {
|
|
repeated string envVars = 1;
|
|
}
|
|
|
|
service EnvService {
|
|
rpc Env (EnvRequest) returns (EnvResponse) {}
|
|
} |