feat(lib): add error module and export it

- introduce a new error module for standardized error handling
- export the Error type for external use
This commit is contained in:
Jeremiah Russell
2025-10-02 13:45:09 +01:00
committed by Jeremiah Russell
parent cd149b0d53
commit dc1a52e39b

View File

@@ -6,9 +6,11 @@
mod client; mod client;
mod credential; mod credential;
mod error;
mod list; mod list;
pub use client::get_auth; pub use client::get_auth;
pub use client::get_client; pub use client::get_client;
pub use credential::Credential; pub use credential::Credential;
pub use error::Error;
pub use list::List; pub use list::List;