From 1bc26ed79fa6b2a09eb81b5c875c1495a2e4dbf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogdan-=C8=98tefan=20Neac=C5=9Fu?= Date: Tue, 24 Sep 2024 11:48:54 +0200 Subject: [PATCH] Expose error type (#4924) --- common/authenticator-requests/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/common/authenticator-requests/src/lib.rs b/common/authenticator-requests/src/lib.rs index 25a03fb858..80112f061c 100644 --- a/common/authenticator-requests/src/lib.rs +++ b/common/authenticator-requests/src/lib.rs @@ -6,6 +6,7 @@ pub mod v2; mod error; +pub use error::Error; pub use v2 as latest; pub const CURRENT_VERSION: u8 = 2;