From d67a55078cf7711bf57f2335b8a3f1989c75d33a Mon Sep 17 00:00:00 2001 From: newtoallofthis123 Date: Tue, 27 Feb 2024 19:42:29 +0530 Subject: [PATCH] Run Code Format --- swhks/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swhks/src/main.rs b/swhks/src/main.rs index f74fd92..3de2eae 100644 --- a/swhks/src/main.rs +++ b/swhks/src/main.rs @@ -1,10 +1,11 @@ -use std::io::Read; use clap::arg; use environ::Env; use nix::{ sys::stat::{umask, Mode}, unistd::daemon, }; +use std::io::Read; +use std::time::{SystemTime, UNIX_EPOCH}; use std::{ env, fs, fs::OpenOptions, @@ -12,7 +13,6 @@ use std::{ path::Path, process::{exit, id, Command, Stdio}, }; -use std::time::{SystemTime, UNIX_EPOCH}; use sysinfo::{ProcessExt, System, SystemExt}; mod environ;