(userid uint)
| 17 | // The PluginDatabase interface for encapsulating database access. |
| 18 | type PluginDatabase interface { |
| 19 | GetPluginConfByUser(userid uint) ([]*model.PluginConf, error) |
| 20 | UpdatePluginConf(p *model.PluginConf) error |
| 21 | GetPluginConfByID(id uint) (*model.PluginConf, error) |
| 22 | } |
no outgoing calls