From dc1a52e39b95ab044d9bf625f0a27909990e5f38 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 2 Oct 2025 13:45:09 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(lib):=20add=20error=20module?= =?UTF-8?q?=20and=20export=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - introduce a new error module for standardized error handling - export the Error type for external use --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 4f9848f..06abb0d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,9 +6,11 @@ mod client; mod credential; +mod error; mod list; pub use client::get_auth; pub use client::get_client; pub use credential::Credential; +pub use error::Error; pub use list::List;