Skip to content

Commit 4fdee0b

Browse files
committed
add simple ping to messure basic response time
1 parent 3411ec3 commit 4fdee0b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/backend/src/index.ts

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ global.logger = winston.createLogger({
6666
app.locals.web3Provider = getWeb3Provider(process.env);
6767

6868
app.use(logRequest);
69+
70+
app.get('/hello', (req, res) => {
71+
return res.send('Hello DM3');
72+
});
6973
app.use('/profile', Profile());
7074
app.use('/storage', Storage());
7175
app.use('/auth', Auth());

0 commit comments

Comments
 (0)