From eb024949ab1f895470cf1ea2aa6f4fd2f962e1cb Mon Sep 17 00:00:00 2001 From: Roshan R Chandar <43182697+Roshan-R@users.noreply.github.com> Date: Tue, 23 Apr 2024 21:30:09 +0530 Subject: [PATCH] docs(customizations): fix trait implementation for supergraph_service (#4848) replace trait implementation for supergraph_service from router::BoxService to supergraph::BoxService Co-authored-by: Geoffroy Couprie --- docs/source/customizations/native.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/customizations/native.mdx b/docs/source/customizations/native.mdx index ab18e3bcd92..dabb6edf9fe 100644 --- a/docs/source/customizations/native.mdx +++ b/docs/source/customizations/native.mdx @@ -100,8 +100,8 @@ impl Plugin for HelloWorld { fn supergraph_service( &self, - service: router::BoxService, - ) -> router::BoxService { + service: supergraph::BoxService, + ) -> supergraph::BoxService { service }