aboutsummaryrefslogtreecommitdiff
path: root/src/response.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-03-05 05:59:27 -0800
committerFuwn <[email protected]>2024-03-05 05:59:27 -0800
commit30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547 (patch)
tree53433b0acade861f6d5e8f8a308d6208199d5ce2 /src/response.rs
parentci(earthly): switch to earthly from docker (diff)
downloadlocus-30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547.tar.xz
locus-30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547.zip
format: new rustfmt.toml
Diffstat (limited to 'src/response.rs')
-rw-r--r--src/response.rs4
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()