1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use clap::Subcommand; use crate::cli::Context; use crate::error::Result; #[derive(Debug, Subcommand)] pub enum WifiCommand { /// Show the Wi-Fi status Status, } impl WifiCommand { pub async fn run(self, _context: &Context) -> Result<()> { todo!() } }