veltrix 0.7.3

Unix helpers, service integrations, and Unicode metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Caddy Admin API integration.
//!
//! This module exposes an async client for selected Caddy 2 Admin API
//! workflows over HTTP or Unix sockets.

pub mod admin;
pub mod cli;
pub mod spec;
pub mod types;

pub use admin::CaddyAdminClient;
pub use cli::CaddyCliClient;
pub use spec::*;
pub use types::*;