Update 'app.ts'
All checks were successful
Jenkins Production Deployment

This commit is contained in:
Patrick Müller 2021-03-21 18:04:11 +00:00
parent 5f5c1cfb45
commit ab66de7371

2
app.ts
View File

@ -19,7 +19,7 @@ routes.push(new GeneralInfoRoutes(app));
// this is a simple route to make sure everything is working properly
app.get('/', (req: express.Request, res: express.Response) => {
res.status(200).send('Welcome to the Pluto Development REST API!');
res.status(200).send('Welcome to the Pluto Development REST API V2!');
});
server.listen(port, () => {