summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2015-03-21 11:12:45 -0400
committerAndrew Gallant <jamslam@gmail.com>2015-03-21 11:12:45 -0400
commitba9d451b7ffd3ccf6f49b239f16822000e89bd54 (patch)
treed6563426b52d2052bc3e895265ff90946d8ce015 /src/main.rs
parent3eeab6b888304cc8c5712aa3e29279edec7182f0 (diff)
rustup
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index b94c9ce..be47325 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -175,10 +175,10 @@ impl Command {
}
}
-type CliResult<T> = Result<T, CliError>;
+pub type CliResult<T> = Result<T, CliError>;
#[derive(Debug)]
-enum CliError {
+pub enum CliError {
Flag(docopt::Error),
Csv(csv::Error),
Io(io::Error),