From e42b9530522b58039ffd4b853887fdc79fd446aa Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 2 Mar 2023 17:47:16 +0100 Subject: [PATCH] Expose poll module --- src/lib.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f646ba6..085eee2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,6 +42,7 @@ pub mod hello; pub mod host; pub mod login; pub mod logout; +pub mod poll; pub mod request; pub mod response; pub mod xml; @@ -62,9 +63,6 @@ pub mod extensions { } } -mod poll; -pub use poll::{Ack, Poll, PollData}; - pub use client::EppClient; pub use error::Error;