diff options
| author | Fuwn <[email protected]> | 2024-03-05 05:59:27 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-05 05:59:27 -0800 |
| commit | 30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547 (patch) | |
| tree | 53433b0acade861f6d5e8f8a308d6208199d5ce2 /src/response.rs | |
| parent | ci(earthly): switch to earthly from docker (diff) | |
| download | locus-30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547.tar.xz locus-30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547.zip | |
format: new rustfmt.toml
Diffstat (limited to 'src/response.rs')
| -rw-r--r-- | src/response.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/response.rs b/src/response.rs index b9aa96b..c6df182 100644 --- a/src/response.rs +++ b/src/response.rs @@ -15,9 +15,7 @@ // Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -use std::sync::LazyLock; - -use windmark::response::Response; +use {std::sync::LazyLock, windmark::response::Response}; static QUOTES: LazyLock<Vec<String>> = LazyLock::new(|| { serde_json::from_str(include_str!("../content/json/quotes.json")).unwrap() |