From e27f44c982e829771736720f4fa8f799044306c4 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 2 Oct 2025 16:41:34 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(list):=20export=20DEFAULT=5FMA?= =?UTF-8?q?X=5FRESULTS=20constant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - expose DEFAULT_MAX_RESULTS for external configuration --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index d2d6782..fe5bbc3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,4 +11,5 @@ pub(crate) mod utils; pub use credential::Credential; pub use error::Error; +pub use list::DEFAULT_MAX_RESULTS; pub use list::List;