unifly 0.8.2

CLI and TUI for managing UniFi network controllers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Unified binary crate for UniFi network management.
//!
//! Single binary with feature-gated capabilities:
//! - CLI commands (feature `cli`) — kubectl-style command-line interface
//! - `unifly tui` subcommand (feature `tui`) — real-time terminal dashboard

pub mod config;

#[cfg(feature = "cli")]
pub mod cli;

#[cfg(feature = "tui")]
pub mod tui;