diff options
Diffstat (limited to 'crates/mozart-core/src/http.rs')
| -rw-r--r-- | crates/mozart-core/src/http.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/mozart-core/src/http.rs b/crates/mozart-core/src/http.rs index 43de55d..6fed90d 100644 --- a/crates/mozart-core/src/http.rs +++ b/crates/mozart-core/src/http.rs @@ -1,9 +1,8 @@ use crate::MOZART_VERSION; +use anyhow::{Context as _, Result, anyhow, bail}; use std::path::{Path, PathBuf}; use std::sync::OnceLock; -use anyhow::{Context, Result, anyhow, bail}; - /// Returns the common User-Agent string for all HTTP requests. /// /// Format: `Mozart/<version> (<os>; <arch>)` |
