module.exports = async (dbConn) => { const countries = await dbConn.query( `SELECT countries.id AS country_id, countries.country AS name, countries.description FROM countries` ); return countries; };