| 1 | package plugin |
| 2 | |
| 3 | type dbStorageHandler struct { |
| 4 | pluginID uint |
| 5 | db Database |
| 6 | } |
| 7 | |
| 8 | func (c dbStorageHandler) Save(b []byte) error { |
| 9 | conf, err := c.db.GetPluginConfByID(c.pluginID) |
nothing calls this directly
no outgoing calls
no test coverage detected