rust-terminal 0.1.1

A wrapper abstraction for working with cli commands easily.
Documentation
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()
    }
}