diff --git a/app.ts b/app.ts index 02c654d..b910137 100644 --- a/app.ts +++ b/app.ts @@ -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, () => {