You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
395 B
19 lines
395 B
syntax = "proto3"; |
|
|
|
package live.appinterface.v1; |
|
|
|
option go_package = "v1"; |
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto"; |
|
|
|
|
|
service config { |
|
rpc getConf (GetConfReq) returns (GetConfResp); |
|
} |
|
|
|
message GetConfReq { |
|
string key = 1 [(gogoproto.moretags) = 'form:"key" validate:"required"']; |
|
} |
|
|
|
message GetConfResp { |
|
string value = 1 [(gogoproto.moretags) = 'form:"value"']; |
|
} |