newStaffLDB-API #48

Merged
fred.boniface merged 85 commits from newStaffLDB-API into main 2023-10-03 21:35:03 +01:00
1 changed files with 4 additions and 3 deletions
Showing only changes of commit 0576f431dc - Show all commits

View File

@ -1,15 +1,16 @@
const log = require("../utils/logs.utils"); // Log Helper
const db = require("../services/dbAccess.services");
import { logger } from "../utils/logger.utils";
async function getStations() {
var out = db.query("stations");
log.out("listServices.getStations: Fetching stations list", "info");
logger.debug("listServices.getStations: Fetching stations list");
return await out;
}
async function getCorpus() {
var out = db.query("corpus");
log.out("listServices.getCorpus: Fetching CORPUS list", "info");
logger.debug("listServices.getCorpus: Fetching CORPUS list");
return await out;
}