1 2 3 4 5 6 7 8 9 10
use crate::Command; /// Terminal construct for working with cli commands. pub struct Terminal {} impl Terminal { pub fn command() -> Command { Command::new() } }