17 lines
314 B
Go
17 lines
314 B
Go
package keeper
|
|
|
|
import (
|
|
"mukan/x/qpos/types"
|
|
)
|
|
|
|
var _ types.QueryServer = queryServer{}
|
|
|
|
// NewQueryServerImpl returns an implementation of the QueryServer interface
|
|
// for the provided Keeper.
|
|
func NewQueryServerImpl(k Keeper) types.QueryServer {
|
|
return queryServer{k}
|
|
}
|
|
|
|
type queryServer struct {
|
|
k Keeper
|
|
}
|