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