()
| 24 | // The Database interface for encapsulating database access. |
| 25 | type Database interface { |
| 26 | GetUsers() ([]*model.User, error) |
| 27 | GetPluginConfByUserAndPath(userid uint, path string) (*model.PluginConf, error) |
| 28 | CreatePluginConf(p *model.PluginConf) error |
| 29 | GetPluginConfByApplicationID(appid uint) (*model.PluginConf, error) |
no outgoing calls
no test coverage detected