diff options
| author | Fuwn <[email protected]> | 2024-03-05 05:59:27 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-05 05:59:27 -0800 |
| commit | 30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547 (patch) | |
| tree | 53433b0acade861f6d5e8f8a308d6208199d5ce2 /src/main.rs | |
| parent | ci(earthly): switch to earthly from docker (diff) | |
| download | locus-30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547.tar.xz locus-30f80c85b9ed4cb6a4a633e1bc7a3dbd142f8547.zip | |
format: new rustfmt.toml
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs index 9d623f3..447e37e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,13 +35,13 @@ mod route; mod timing; mod xml; -#[macro_use] -extern crate log; +#[macro_use] extern crate log; -use std::sync::{LazyLock, Mutex}; - -use pickledb::PickleDb; -use tokio::time::Instant; +use { + pickledb::PickleDb, + std::sync::{LazyLock, Mutex}, + tokio::time::Instant, +}; const ERROR_HANDLER_RESPONSE: &str = "The requested resource could not be found at this time. You can try \ |