diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 60f2214..0fe170d 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -5,11 +5,12 @@ use tracing_subscriber::{EnvFilter, fmt::{self, time::LocalTime}, prelude::*}; | |||
5 | use crate::routes::start::start; | 5 | use crate::routes::start::start; |
6 | 6 | ||
7 | mod auth; | 7 | mod auth; |
8 | mod config; | ||
8 | mod routes; | 9 | mod routes; |
10 | mod wol; | ||
9 | 11 | ||
10 | #[tokio::main] | 12 | #[tokio::main] |
11 | async fn main() { | 13 | async fn main() { |
12 | |||
13 | unsafe { local_offset::set_soundness(local_offset::Soundness::Unsound); } | 14 | unsafe { local_offset::set_soundness(local_offset::Soundness::Unsound); } |
14 | let time_format = | 15 | let time_format = |
15 | time::macros::format_description!("[year]-[month]-[day] [hour]:[minute]:[second]"); | 16 | time::macros::format_description!("[year]-[month]-[day] [hour]:[minute]:[second]"); |