From 0f4d9f83954588c95c0750d872ff88ee33dbe35e Mon Sep 17 00:00:00 2001 From: Miaoxiang Date: Mon, 9 Jun 2025 16:19:14 +0800 Subject: [PATCH] fix(docs): add missing import for `createServiceFactory` in example code Signed-off-by: Miaoxiang --- docs/backend-system/core-services/root-health.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/backend-system/core-services/root-health.md b/docs/backend-system/core-services/root-health.md index fa147499a6..515031d79a 100644 --- a/docs/backend-system/core-services/root-health.md +++ b/docs/backend-system/core-services/root-health.md @@ -12,7 +12,11 @@ The Root Health service provides some health check endpoints for the backend. By The following example shows how you can override the root health service implementation. ```ts -import { RootHealthService, coreServices } from '@backstage/backend-plugin-api'; +import { + RootHealthService, + coreServices, + createServiceFactory +} from '@backstage/backend-plugin-api'; const backend = createBackend();