acme-api: export api types at top-level

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
Dietmar Maurer 2024-06-03 10:03:06 +02:00
parent 5250493e05
commit 0582a13281

View File

@ -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;