Skip to content

Commit adff2bb

Browse files
committed
refactor: change response message in root path
1 parent 2de40d1 commit adff2bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const app = express();
77
app.use(express.json());
88

99
app.get('/', (req, res) => {
10-
res.send('Wellcome Gateway database');
10+
res.send('ok');
1111
});
1212

1313
app.get('/available/:key', (req, res) => {

0 commit comments

Comments
 (0)