---------------------------------------------------------------------------- AppModuleBasic ---------------------------------------------------------------------------- AppModuleBasic implements the AppModuleBasic interface for the module.
| 42 | |
| 43 | // AppModuleBasic implements the AppModuleBasic interface for the module. |
| 44 | type AppModuleBasic struct { |
| 45 | cdc codec.BinaryCodec |
| 46 | } |
| 47 | |
| 48 | func NewAppModuleBasic(cdc codec.BinaryCodec) AppModuleBasic { |
| 49 | return AppModuleBasic{cdc: cdc} |
nothing calls this directly
no outgoing calls
no test coverage detected