MCPcopy Create free account
hub / github.com/akash-network/node / RegisterServices

Method RegisterServices

x/audit/module.go:148–154  ·  view source on GitHub ↗

RegisterServices registers the module's services

(cfg module.Configurator)

Source from the content-addressed store, hash-verified

146
147// RegisterServices registers the module's services
148func (am AppModule) RegisterServices(cfg module.Configurator) {
149 types.RegisterMsgServer(cfg.MsgServer(), handler.NewMsgServerImpl(am.keeper))
150
151 querier := keeper.Querier{Keeper: am.keeper}
152
153 types.RegisterQueryServer(cfg.QueryServer(), querier)
154}
155
156// RegisterQueryService registers a GRPC query service to respond to the
157// module-specific GRPC queries.

Callers

nothing calls this directly

Calls 1

NewMsgServerImplFunction · 0.92

Tested by

no test coverage detected