From be76b403d8f09076f3e088c1970f796271bc4c56 Mon Sep 17 00:00:00 2001 From: Ayush More Date: Wed, 23 Jul 2025 22:49:50 +0530 Subject: [PATCH] Json fixxxxx Signed-off-by: Ayush More --- docs/plugins/backend-plugin.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/plugins/backend-plugin.md b/docs/plugins/backend-plugin.md index 7dbc6cdc54..9b8b63fc89 100644 --- a/docs/plugins/backend-plugin.md +++ b/docs/plugins/backend-plugin.md @@ -52,11 +52,13 @@ curl localhost:7007/api/carmen/todos ``` You should see the following response: -```sh + +```json { -"items": [] -} + "items": [] +} ``` + :::note Note: The route shown here matches the default in the current backend plugin template. If you want a `/health` endpoint for health checks, you can add it to your router yourself. :::