From 95ea61183fa68b65196e2e8e98fdaba49284fcd5 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 3 Jun 2024 10:39:33 +0200 Subject: [PATCH] acme-api: export known directories Signed-off-by: Dietmar Maurer --- proxmox-acme-api/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proxmox-acme-api/src/lib.rs b/proxmox-acme-api/src/lib.rs index 1dbb512e..471d899f 100644 --- a/proxmox-acme-api/src/lib.rs +++ b/proxmox-acme-api/src/lib.rs @@ -9,6 +9,8 @@ pub use init::*; #[cfg(feature = "impl")] mod config; +#[cfg(feature = "impl")] +pub use config::{DEFAULT_ACME_DIRECTORY_ENTRY, KNOWN_ACME_DIRECTORIES}; #[cfg(feature = "impl")] mod challenge_schemas;