'use strict'; const db = require ('../db'); const { http } = require ('@sapphirecode/consts'); module.exports = async (req, res) => { res.status (http.status_ok) .json (await db.get_all ()); };