From ef7cd5bc677c6aabf5517e74ab64eb84d4784057 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 10 Nov 2018 02:42:17 -0500 Subject: unify cli and cmd --- src/cmd/sync.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/cmd/sync.rs') diff --git a/src/cmd/sync.rs b/src/cmd/sync.rs index 3dc7ba8..5b71954 100644 --- a/src/cmd/sync.rs +++ b/src/cmd/sync.rs @@ -1,4 +1,3 @@ -use cli; use db; use lastfm; use paths; @@ -27,7 +26,7 @@ impl Command { } } -impl cli::Command for Command { +impl super::Command for Command { fn run(&self) -> failure::Fallible<()> { let db = db::DB::new(&paths::db_path()?)?; let lastfm = lastfm::LastFMClient::new(&self.username)?; -- cgit v1.2.3-54-g00ecf