AppReports/lib/db/app.js

10 lines
140 B
JavaScript
Raw Normal View History

2020-08-16 11:48:06 +02:00
'use strict';
module.exports = (get_db) => ({
get_all () {
const knex = get_db ();
return knex ('app')
.select ();
}
});