Clippy fixes

This commit is contained in:
Jazz Turner-Baggs
2026-07-29 15:45:13 -07:00
parent bf653f22dd
commit 1c8d466f48
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ where
Ok(Self {
services: ServiceContext {
auth_service: auth,
_auth_service: auth,
ds: delivery,
registry: registration,
store,
+1 -1
View File
@@ -40,7 +40,7 @@ where
/// Bundles every service a conversation operation may need.
pub(crate) struct ServiceContext<S: ExternalServices> {
pub(crate) auth_service: S::AS,
pub(crate) _auth_service: S::AS,
pub(crate) ds: S::DS,
pub(crate) registry: S::RS,
pub(crate) store: S::CS,