You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
282 B
JavaScript

// Strict Mode
"use strict";
// Imports
import database from "../../../database/database.js";
// Handler
export default async function handler ( req, res ) {
try {
res.send(await database.getStats(req.query.getStats)[0]);
} catch {
res.send(500);
};
};