aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/bin/fatcat-auth.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-01-10 19:09:45 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-01-10 19:09:45 -0800
commitfbe91ab8e6100c87ee9353e177d11b0c0b952661 (patch)
tree9c06dc80229eb66d843205e206d1f6e85b1f48b0 /rust/src/bin/fatcat-auth.rs
parent4fd476bdeca596b97521846629272d96d8e023c4 (diff)
downloadfatcat-fbe91ab8e6100c87ee9353e177d11b0c0b952661.tar.gz
fatcat-fbe91ab8e6100c87ee9353e177d11b0c0b952661.zip
narrow down many glob imports
Diffstat (limited to 'rust/src/bin/fatcat-auth.rs')
-rw-r--r--rust/src/bin/fatcat-auth.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/rust/src/bin/fatcat-auth.rs b/rust/src/bin/fatcat-auth.rs
index 9efd47ed..85132023 100644
--- a/rust/src/bin/fatcat-auth.rs
+++ b/rust/src/bin/fatcat-auth.rs
@@ -2,11 +2,9 @@
use clap::{App, SubCommand};
-use fatcat::auth;
-use fatcat::editing;
-use fatcat::errors::*;
+use fatcat::{auth, editing, server};
+use fatcat::errors::Result;
use fatcat::identifiers::FatcatId;
-use fatcat::server::*;
use std::process;
use std::str::FromStr;
@@ -68,7 +66,7 @@ fn main() -> Result<()> {
}
// Then the ones that do
- let db_conn = database_worker_pool()?.get().expect("database pool");
+ let db_conn = server::database_worker_pool()?.get().expect("database pool");
let confectionary = auth::env_confectionary()?;
match m.subcommand() {
("list-editors", Some(_subm)) => {