diff options
Diffstat (limited to 'rust/src/bin/fatcat-auth.rs')
-rw-r--r-- | rust/src/bin/fatcat-auth.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rust/src/bin/fatcat-auth.rs b/rust/src/bin/fatcat-auth.rs index 85132023..0ba543b4 100644 --- a/rust/src/bin/fatcat-auth.rs +++ b/rust/src/bin/fatcat-auth.rs @@ -2,9 +2,9 @@ use clap::{App, SubCommand}; -use fatcat::{auth, editing, server}; use fatcat::errors::Result; use fatcat::identifiers::FatcatId; +use fatcat::{auth, editing, server}; use std::process; use std::str::FromStr; @@ -66,7 +66,9 @@ fn main() -> Result<()> { } // Then the ones that do - let db_conn = server::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)) => { |