(cdc codec.Codec, k keeper.Keeper)
| 89 | } |
| 90 | |
| 91 | func NewAppModule(cdc codec.Codec, k keeper.Keeper) AppModule { |
| 92 | return AppModule{ |
| 93 | AppModuleBasic: AppModuleBasic{cdc: cdc}, |
| 94 | keeper: k, |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | func (AppModule) Name() string { |
| 99 | return moduletypes.ModuleName |
no outgoing calls
no test coverage detected