From 9193014b82249d40c09f57afc4725779f6ea8797 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Wed, 29 May 2024 13:22:08 -0600 Subject: [PATCH] Use R instead of Response alias --- odilia/src/tower.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odilia/src/tower.rs b/odilia/src/tower.rs index c8fa001d..80b04486 100644 --- a/odilia/src/tower.rs +++ b/odilia/src/tower.rs @@ -432,7 +432,7 @@ where T2: From, R: IntoCommands, { - type Response = Response; + type Response = R; type Future = Fut; fn call(self, req: E, state: S) -> Self::Future { self(req, state.clone().into(), state.clone().into())