aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorDaniel Mueller <deso@posteo.net>2020-08-31 19:25:48 -0700
committerDaniel Mueller <deso@posteo.net>2020-08-31 19:25:48 -0700
commit98b36813b2ce7789da5981920b672daa47be1c35 (patch)
treef2b10da5027e724d0f2286036290f331a08fd123 /src/main.rs
parent67652d83935705d70fe87cd1a1fee787a4715d33 (diff)
downloadnitrocli-98b36813b2ce7789da5981920b672daa47be1c35.tar.gz
nitrocli-98b36813b2ce7789da5981920b672daa47be1c35.tar.bz2
Remove application global Result definition
In the past we were using an application global custom Result type definition. This makes less sense now that we switched over to using anyhow's Error and Result types. We kept that for the time being, but with this change we remove the type and use anyhow::Result instead.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 4e6b01d..5af10bb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -79,8 +79,6 @@ use std::ffi;
use std::io;
use std::process;
-use anyhow::Result;
-
const NITROCLI_ADMIN_PIN: &str = "NITROCLI_ADMIN_PIN";
const NITROCLI_USER_PIN: &str = "NITROCLI_USER_PIN";
const NITROCLI_NEW_ADMIN_PIN: &str = "NITROCLI_NEW_ADMIN_PIN";
@@ -140,7 +138,7 @@ impl<'io> Stdio for ExecCtx<'io> {
}
/// Parse the command-line arguments and execute the selected command.
-fn handle_arguments(ctx: &mut RunCtx<'_>, args: Vec<String>) -> Result<()> {
+fn handle_arguments(ctx: &mut RunCtx<'_>, args: Vec<String>) -> anyhow::Result<()> {
use structopt::StructOpt;
match args::Args::from_iter_safe(args.iter()) {