feat(core): add Labels struct

- introduce `Labels` struct for managing labels
- implement methods for adding, removing, and retrieving labels
This commit is contained in:
Jeremiah Russell
2025-10-03 14:34:11 +01:00
committed by Jeremiah Russell
parent af1c95e5c3
commit 2af35e7588

View File

@@ -6,10 +6,12 @@
mod credential; mod credential;
mod error; mod error;
mod labels;
mod list; mod list;
pub(crate) mod utils; pub(crate) mod utils;
pub use credential::Credential; pub use credential::Credential;
pub use error::Error; pub use error::Error;
pub use labels::Labels;
pub use list::DEFAULT_MAX_RESULTS; pub use list::DEFAULT_MAX_RESULTS;
pub use list::List; pub use list::List;