diff options
| author | namilsk <namilsk@namilsk.tech> | 2026-02-02 00:19:48 +0300 |
|---|---|---|
| committer | namilsk <namilsk@namilsk.tech> | 2026-02-02 00:19:48 +0300 |
| commit | 6a63e7e777fb9182ff5b68aa2167bd5f2e548f0e (patch) | |
| tree | 878936a2af4b6bf3372ca9f586b2cfe7f9519348 /init/src/host/timezone.rs | |
| parent | a5749a5d8d38b0db2ce5548473f8a61b674578a6 (diff) | |
Implemented mainloop functions (e.g. restarting services), autofmt all
Diffstat (limited to 'init/src/host/timezone.rs')
| -rw-r--r-- | init/src/host/timezone.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/src/host/timezone.rs b/init/src/host/timezone.rs index 1062a8b..2da9e85 100644 --- a/init/src/host/timezone.rs +++ b/init/src/host/timezone.rs @@ -1,6 +1,6 @@ use crate::log::*; use std::fs; - + pub fn set_timezone(timezone: Option<String>) -> Result<(), Box<dyn std::error::Error>> { let tz = match timezone { Some(tz) => tz, |
