loadComplexConfig reads the persisted complex config from plugin storage.
()
| 40 | |
| 41 | // loadComplexConfig reads the persisted complex config from plugin storage. |
| 42 | func (m *AutoMissionModule) loadComplexConfig() complexConfig { |
| 43 | var cc complexConfig |
| 44 | m.plug.ReadIntoStruct(complexConfigKey, &cc) |
| 45 | return cc |
| 46 | } |
| 47 | |
| 48 | // saveComplexConfig persists the complex config to plugin storage. |
| 49 | func (m *AutoMissionModule) saveComplexConfig(cc complexConfig) error { |
no test coverage detected