LogQuery returns a new Log select query.
()
| 9 | |
| 10 | // LogQuery returns a new Log select query. |
| 11 | func (app *BaseApp) LogQuery() *dbx.SelectQuery { |
| 12 | return app.AuxModelQuery(&Log{}) |
| 13 | } |
| 14 | |
| 15 | // FindLogById finds a single Log entry by its id. |
| 16 | func (app *BaseApp) FindLogById(id string) (*Log, error) { |
no test coverage detected