aboutsummaryrefslogtreecommitdiff
path: root/src/modules.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-08-16 17:33:49 -0700
committerFuwn <[email protected]>2022-08-16 17:33:49 -0700
commit633f32e3c06aa0eed7133b6cd7ffe61bf5937ca8 (patch)
tree40c9e7fb2f5420a804e961074a69481f798f79bf /src/modules.rs
parentfeat(remarks.json): add new remark (diff)
downloadlocus-633f32e3c06aa0eed7133b6cd7ffe61bf5937ca8.tar.xz
locus-633f32e3c06aa0eed7133b6cd7ffe61bf5937ca8.zip
feat(modules): stocks
Diffstat (limited to 'src/modules.rs')
-rw-r--r--src/modules.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules.rs b/src/modules.rs
index 9c84a1d..c9a5f1b 100644
--- a/src/modules.rs
+++ b/src/modules.rs
@@ -28,11 +28,12 @@ pub mod search;
mod sitemap;
mod skills;
mod r#static;
+mod stocks;
mod uptime;
pub fn module(router: &mut windmark::Router) {
crate::statelesses!(
router, uptime, sitemap, search, remarks, blog, random, r#static, router,
- skills, contact, interests, api,
+ skills, contact, interests, api, stocks,
);
}