Skip to main content

rust_terminal/
terminal.rs

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