summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-04-10 09:02:27 +0300
committerLars Wirzenius <liw@liw.fi>2021-04-10 10:29:27 +0300
commite13ef6a773755e8eed4d0fb1e55f3bd80a6c5cfd (patch)
tree0ef79cad97789850efc5fcfe8073dd120b8473d7 /src/bin
parentf3ed6ba027dbb410161970c4a706192885d92a3d (diff)
downloadobnam2-e13ef6a773755e8eed4d0fb1e55f3bd80a6c5cfd.tar.gz
refactor: move ClientConfig into its own module
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/obnam.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/obnam.rs b/src/bin/obnam.rs
index bb0cbdb..10048a3 100644
--- a/src/bin/obnam.rs
+++ b/src/bin/obnam.rs
@@ -2,10 +2,10 @@ use directories_next::ProjectDirs;
use log::{debug, error, info, LevelFilter};
use log4rs::append::file::FileAppender;
use log4rs::config::{Appender, Config, Logger, Root};
-use obnam::client::ClientConfig;
use obnam::cmd::{
backup, get_chunk, init, list, list_files, restore, show_config, show_generation,
};
+use obnam::config::ClientConfig;
use std::path::{Path, PathBuf};
use structopt::StructOpt;