diff options
| author | Fuwn <[email protected]> | 2023-04-07 17:51:03 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-07 17:51:03 -0700 |
| commit | 885748422794b5dda1af98b120f080642ff7fb52 (patch) | |
| tree | 788fe356a256b964a63823e43125ad9a7251c564 /src | |
| parent | style(main): remove over-specific error handler type context (diff) | |
| download | locus-885748422794b5dda1af98b120f080642ff7fb52.tar.xz locus-885748422794b5dda1af98b120f080642ff7fb52.zip | |
style(main): add space between chain and calls
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index ea398a7..efbe44d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -81,6 +81,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { windmark::Response::not_found(ERROR_HANDLER_RESPONSE) }); router.set_fix_path(true); + timing::time_section(&mut time_mount, "creating router"); timing::time_mounts("module", &mut time_mount, || { stateless!(router, modules); |