From 6f9801d5e7e3745b558e51c70fa5c2c1b8b2a481 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Wed, 1 Oct 2025 14:51:42 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(list):=20export=20List=20struc?= =?UTF-8?q?t=20in=20lib.rs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - expose List struct for external use --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 2035948..4f9848f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,3 +11,4 @@ mod list; pub use client::get_auth; pub use client::get_client; pub use credential::Credential; +pub use list::List;