AppReports/lib/api/get-log.js

10 lines
202 B
JavaScript
Raw Normal View History

2020-07-29 20:56:03 +02:00
'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 ());
};