diff --git a/src/app.controller.ts b/src/app.controller.ts index a6f02b6..c6c698f 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -9,7 +9,7 @@ export class AppController { @Get("ping") pong() { return { - message: "pong", + message: new Date().toLocaleString("fr"), }; } }