Skip to main content

unifi_cli/api/
mod.rs

1mod client;
2pub mod types;
3
4pub use client::ClientOptions;
5pub use client::ProtectSession;
6pub use client::UnifiClient;
7pub use client::error_for_status;
8pub use types::{
9    ApiError, Client, Device, DeviceWithPorts, Event, HealthSubsystem, HostSystem, LastConnection,
10    LegacyClient, LegacyDevice, LegacyResponse, Network, PortEntry, SysInfo, UnsupportedReason,
11    format_bytes, format_mac, format_uptime, normalize_mac,
12};