---------------------------------------------------------------------------- AppModule ---------------------------------------------------------------------------- AppModule implements the AppModule interface for the module.
| 95 | |
| 96 | // AppModule implements the AppModule interface for the module. |
| 97 | type AppModule struct { |
| 98 | AppModuleBasic |
| 99 | |
| 100 | keeper keeper.Keeper |
| 101 | } |
| 102 | |
| 103 | func NewAppModule(cdc codec.Codec, keeper keeper.Keeper) AppModule { |
| 104 | return AppModule{ |
nothing calls this directly
no outgoing calls
no test coverage detected