From 0582a13281680c3da815614d6003074e61b0f17b Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 3 Jun 2024 10:03:06 +0200 Subject: [PATCH] acme-api: export api types at top-level Signed-off-by: Dietmar Maurer --- proxmox-acme-api/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proxmox-acme-api/src/lib.rs b/proxmox-acme-api/src/lib.rs index 532cce80..1dbb512e 100644 --- a/proxmox-acme-api/src/lib.rs +++ b/proxmox-acme-api/src/lib.rs @@ -1,5 +1,6 @@ //! ACME API crate (API types and API implementation) -pub mod types; +mod types; +pub use types::*; #[cfg(feature = "impl")] mod init;