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 1 additions and 8 deletions
Showing only changes of commit 2417a7ba53 - Show all commits

View File

@ -1,5 +1,3 @@
const testing = require("../services/mail.services");
import { logger } from "../utils/logger.utils";
async function getAlive() {
@ -9,16 +7,11 @@ async function getAlive() {
async function getReady() {
logger.trace("kubeServices.getReady: ready hook checked");
testing.send({
to: "fred@fjla.uk",
subject: "OwlBoard Test",
txt: "This is a test message from OwlBoard (testing)",
});
return "not_implemented";
}
async function getTime() {
var now = new Date();
var now: Date = new Date();
return { responseGenerated: now };
}