devloop 0.1.3

A tool to help with repetitive commands during development.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::{ArgMatches, App, AppSettings, Arg};

pub fn parse_args() -> ArgMatches<'static> {
    App::new("Devloop")
        .setting(AppSettings::ColoredHelp)
        .version(crate_version!())
        .author(crate_authors!())
        .arg(
            Arg::with_name("file")
                .help("Configuration file")
                .default_value("dev_loop"),
        )
        .get_matches()
}