From ab66de7371a13bf2f62442c8bb1db84a6ed44748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20M=C3=BCller?= Date: Sun, 21 Mar 2021 18:04:11 +0000 Subject: [PATCH] Update 'app.ts' --- app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, () => {