proxmox-backup/src/acme/mod.rs
Wolfgang Bumiller f2f526b61d add acme client
This is the highlevel part using proxmox-acme-rs to create
requests and our hyper code to issue them to the acme
server.

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2021-05-04 07:56:52 +02:00

6 lines
104 B
Rust

mod client;
pub use client::AcmeClient;
pub(crate) mod plugin;
pub(crate) use plugin::get_acme_plugin;