Jürgen Eckel ba8cd80ee3
added DER module
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2025-05-20 16:53:53 +02:00

26 lines
853 B
Protocol Buffer

syntax = "proto3";
package planetmintgo.der;
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";
import "cosmos/base/query/v1beta1/pagination.proto";
import "planetmintgo/der/params.proto";
option go_package = "github.com/planetmint/planetmint-go/x/der/types";
// Query defines the gRPC querier service.
service Query {
// Parameters queries the parameters of the module.
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
option (google.api.http).get = "/planetmint/planetmint-go/der/params";
}
}
// QueryParamsRequest is request type for the Query/Params RPC method.
message QueryParamsRequest {}
// QueryParamsResponse is response type for the Query/Params RPC method.
message QueryParamsResponse {
// params holds all the parameters of this module.
Params params = 1 [(gogoproto.nullable) = false];
}