use alloc::vec::Vec;
use core::net::IpAddr;
use crate::command;
#[derive(Debug)]
pub enum Command {
SetIps {
new_ips: Vec<IpAddr>,
},
}
impl From<Command> for command::Command {
fn from(command: Command) -> Self {
command::Command::StackControl(command)
}
}