()
| 15 | } |
| 16 | |
| 17 | func (c dbStorageHandler) Load() ([]byte, error) { |
| 18 | pluginConf, err := c.db.GetPluginConfByID(c.pluginID) |
| 19 | if err != nil { |
| 20 | return nil, err |
| 21 | } |
| 22 | return pluginConf.Storage, nil |
| 23 | } |
nothing calls this directly
no test coverage detected