diff options
author | Daniel Mueller <deso@posteo.net> | 2020-08-31 08:00:21 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2020-08-31 08:00:21 -0700 |
commit | 419ff8531c163200a5e7d21d4d0f7ac7ff8d25f8 (patch) | |
tree | fb956f1d9638e13eb00dd01247e35dc2eb7495e9 /src/main.rs | |
parent | 25889f27e55813545430e37f0d1bb2e31c77f295 (diff) | |
download | nitrocli-419ff8531c163200a5e7d21d4d0f7ac7ff8d25f8.tar.gz nitrocli-419ff8531c163200a5e7d21d4d0f7ac7ff8d25f8.tar.bz2 |
Remove no longer used error module
This change removes the error module. This module, and the Error type it
homes, are no longer used by the application, as everything has been
transitioned over to using anyhow's Error type.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 4f08d21..4e6b01d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -70,7 +70,6 @@ mod arg_util; mod args; mod commands; -mod error; mod pinentry; #[cfg(test)] mod tests; |