aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/cast.rs
blob: fe5abbaa1ca04d7d3af21fa9f253a3de05ccd209 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, snafu::Snafu)]
pub enum Error {}

pub type Result<T> = std::result::Result<T, Error>;

pub fn cmd<'a, 'b>(app: clap::App<'a, 'b>) -> clap::App<'a, 'b> {
    app.about("Stream your terminal")
}

pub fn run<'a>(matches: &clap::ArgMatches<'a>) -> super::Result<()> {
    unimplemented!()
}