AppReports/lib/db/app.js
2020-08-16 11:48:06 +02:00

10 lines
140 B
JavaScript

'use strict';
module.exports = (get_db) => ({
get_all () {
const knex = get_db ();
return knex ('app')
.select ();
}
});