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