diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2025-01-25 18:25:10 +0100 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2025-01-25 18:25:10 +0100 |
commit | 5ca87020739fec5edd86b7f2e9acd3d9ee8498d5 (patch) | |
tree | 1763cb4e4754644c467e956048accc2792f5e655 /src/main.rs | |
parent | 0c332494968515621099273bdc2c99d5a1f6df7f (diff) | |
download | statuspage-5ca87020739fec5edd86b7f2e9acd3d9ee8498d5.tar statuspage-5ca87020739fec5edd86b7f2e9acd3d9ee8498d5.tar.bz2 statuspage-5ca87020739fec5edd86b7f2e9acd3d9ee8498d5.tar.zst |
consider systemd services in 'start' or 'mounting' good; fmt
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 69034b3..95ce6b7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,10 @@ #![feature(exit_status_error)] pub mod api; pub mod check; +pub mod dbus; pub mod log; pub mod mail; pub mod web; -pub mod dbus; use ::log::error; use anyhow::{anyhow, Result}; |