refactor: Update ping response message format to include the current date and time in French locale

This commit is contained in:
M1000fr 2024-12-13 18:00:55 +01:00
parent 8f51c04cad
commit 7b43387a0c

View File

@ -9,7 +9,7 @@ export class AppController {
@Get("ping") @Get("ping")
pong() { pong() {
return { return {
message: "pong", message: new Date().toLocaleString("fr"),
}; };
} }
} }