diff options
Diffstat (limited to '')
-rw-r--r-- | src/args.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/args.rs b/src/args.rs index 8757bc8..c14f954 100644 --- a/src/args.rs +++ b/src/args.rs @@ -1,8 +1,9 @@ +use std::net::IpAddr; +use std::path::PathBuf; + use clap::{Parser, ValueHint}; use clap_complete::Shell; use http::header::{HeaderMap, HeaderName, HeaderValue}; -use std::net::IpAddr; -use std::path::PathBuf; use crate::auth; use crate::errors::ContextualError; |