aboutsummaryrefslogtreecommitdiff
path: root/src/modules/stocks.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-17 23:17:50 -0700
committerFuwn <[email protected]>2023-04-17 23:17:50 -0700
commit55167fafb1cd292fe3c42e5c4066a474d05be1f3 (patch)
tree50a28cf249b0e59949899c53e54b3b3cdf4ca452 /src/modules/stocks.rs
parentchore(amenadiel): remove unused feature flag (diff)
downloadlocus-55167fafb1cd292fe3c42e5c4066a474d05be1f3.tar.xz
locus-55167fafb1cd292fe3c42e5c4066a474d05be1f3.zip
style: rewrite formatter
Diffstat (limited to 'src/modules/stocks.rs')
-rw-r--r--src/modules/stocks.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/stocks.rs b/src/modules/stocks.rs
index 20ab850..afa1c5d 100644
--- a/src/modules/stocks.rs
+++ b/src/modules/stocks.rs
@@ -19,7 +19,7 @@
use once_cell::sync::Lazy;
use serde::Deserialize;
-use crate::{route::track_mount, response::success};
+use crate::{response::success, route::track_mount};
static REFERRALS: Lazy<Vec<Referral>> = Lazy::new(|| {
serde_json::from_str(include_str!(
@@ -126,7 +126,7 @@ pub fn module(router: &mut windmark::Router) {
.collect::<Vec<String>>()
.join("\n")
),
- &context
+ &context,
)
},
);