diff options
| author | Fuwn <[email protected]> | 2022-04-19 23:17:52 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-04-19 23:17:52 -0700 |
| commit | 784111e22cc43d403fbc6703fa9a2a4c5c4fa3b5 (patch) | |
| tree | 3d8dd3b0e562bac1becc3ccd70835259be34765f /src/main.rs | |
| parent | fix(docker): permissions, cba (diff) | |
| download | locus-784111e22cc43d403fbc6703fa9a2a4c5c4fa3b5.tar.xz locus-784111e22cc43d403fbc6703fa9a2a4c5c4fa3b5.zip | |
refactor(modules): move modules to module
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 044002e..bb17767 100644 --- a/src/main.rs +++ b/src/main.rs @@ -303,7 +303,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { ); time_mount = Instant::now(); - router.attach_stateless(modules::multi_blog); + router.attach_stateless(modules::multi_blog::multi_blog); info!( "blog mounts took {}ms", |