Skip to main content

unifi_cli/api/
mod.rs

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