Skip to content

Commit 4e5149b

Browse files
authored
Update server.ts
1 parent 9a81109 commit 4e5149b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ app.use(compression());
2929
app.use(express.static(path.join(__dirname, "./public")));
3030
app.use('/api', routes);
3131
app.use('/health', (req, res) => {
32-
res.status(200).send('Server is running');
32+
res.status(200).send('Server is running!');
3333
});
3434
app.get('*', (req, res) => {
3535
res.sendFile(path.join(__dirname, "./public/index.html"));

0 commit comments

Comments
 (0)