diff options
| author | Fuwn <[email protected]> | 2022-08-16 17:33:49 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-08-16 17:33:49 -0700 |
| commit | 633f32e3c06aa0eed7133b6cd7ffe61bf5937ca8 (patch) | |
| tree | 40c9e7fb2f5420a804e961074a69481f798f79bf /src/modules.rs | |
| parent | feat(remarks.json): add new remark (diff) | |
| download | locus-633f32e3c06aa0eed7133b6cd7ffe61bf5937ca8.tar.xz locus-633f32e3c06aa0eed7133b6cd7ffe61bf5937ca8.zip | |
feat(modules): stocks
Diffstat (limited to 'src/modules.rs')
| -rw-r--r-- | src/modules.rs | 3 |
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, ); } |