From bfda9d373554c0120b0039f526d69339fedbc650 Mon Sep 17 00:00:00 2001 From: Fergus Molloy Date: Mon, 28 Jul 2025 01:31:22 +0100 Subject: [PATCH] fix lints --- backend/src/state.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/state.rs b/backend/src/state.rs index 719e8f3..828023c 100644 --- a/backend/src/state.rs +++ b/backend/src/state.rs @@ -12,6 +12,7 @@ pub struct NuState { pub config: Config, } impl NuState { + #[must_use] pub fn new(db: PgPool, config: Config) -> Self { Self { db, config } }