From beda8b967ac2d98640643673204b37a9bf0933bb Mon Sep 17 00:00:00 2001 From: Adam Cattermole Date: Wed, 28 Aug 2024 15:25:11 +0100 Subject: [PATCH] Ignore authservice until used Signed-off-by: Adam Cattermole --- src/service/auth.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/service/auth.rs b/src/service/auth.rs index 1e7c7344..0831cd6c 100644 --- a/src/service/auth.rs +++ b/src/service/auth.rs @@ -14,6 +14,7 @@ pub const AUTH_METHOD_NAME: &str = "Check"; pub struct AuthService; +#[allow(dead_code)] impl AuthService { pub fn message(ce_host: String) -> CheckRequest { AuthService::build_check_req(ce_host)