There was an error while loading. Please reload this page.
1 parent f5143dc commit b8c2efcCopy full SHA for b8c2efc
src/app.ts
@@ -23,8 +23,11 @@ app.use('/api/v1', router);
23
24
//live response
25
app.get('/', (req: Request, res: Response) => {
26
+ const date = new Date(Date.now());
27
res.send(
- '<h1 style="text-align:center; color:#A55FEF; font-family:Verdana;">Hey, How can I assist you today!</h1>'
28
+ `<h1 style="text-align:center; color:#173616; font-family:Verdana;">Beep-beep! The server is alive and kicking.</h1>
29
+ <p style="text-align:center; color:#173616; font-family:Verdana;">${date}</p>
30
+ `
31
);
32
});
33
0 commit comments