summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-10 02:42:17 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-10 02:42:17 -0500
commitef7cd5bc677c6aabf5517e74ab64eb84d4784057 (patch)
treea176623ad0a80804e1d4f6b714b202e5defa1fb0 /src/main.rs
parent07f8d93eff3fd186b7c9bc5125e00cef16bd1a42 (diff)
downloadlastfm-query-ef7cd5bc677c6aabf5517e74ab64eb84d4784057.tar.gz
lastfm-query-ef7cd5bc677c6aabf5517e74ab64eb84d4784057.zip
unify cli and cmd
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index a4ce773..d7adc8f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -12,7 +12,6 @@ extern crate serde_json;
#[macro_use]
extern crate serde_derive;
-mod cli;
mod cmd;
mod lastfm;
mod paths;
@@ -31,7 +30,7 @@ fn program_name() -> failure::Fallible<String> {
}
fn main() {
- match cli::run() {
+ match cmd::run() {
Ok(_) => {},
Err(e) => {
let name = program_name()