♻️ refactor(lib): restructure module exports and visibility
- remove client module public exports - make utils module private
This commit is contained in:
committed by
Jeremiah Russell
parent
ab3d507a1a
commit
4127de086e
@@ -4,14 +4,11 @@
|
|||||||
#![cfg_attr(docsrs, warn(rustdoc::invalid_codeblock_attributes))]
|
#![cfg_attr(docsrs, warn(rustdoc::invalid_codeblock_attributes))]
|
||||||
#![doc = include_str!("../docs/lib.md")]
|
#![doc = include_str!("../docs/lib.md")]
|
||||||
|
|
||||||
mod client;
|
|
||||||
mod credential;
|
mod credential;
|
||||||
mod error;
|
mod error;
|
||||||
mod list;
|
mod list;
|
||||||
pub(crate) mod utils;
|
pub(crate) mod utils;
|
||||||
|
|
||||||
pub use client::get_auth;
|
|
||||||
pub use client::get_client;
|
|
||||||
pub use credential::Credential;
|
pub use credential::Credential;
|
||||||
pub use error::Error;
|
pub use error::Error;
|
||||||
pub use list::List;
|
pub use list::List;
|
||||||
|
|||||||
Reference in New Issue
Block a user