From e3402b4187c3766d9d1e550b261fbe5add88e2e4 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Wed, 26 Mar 2025 15:52:44 +0400 Subject: [PATCH] style: remove explicit const declarations --- src/main.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/main.rs b/src/main.rs index 8c51c6f..14aa112 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,9 +46,7 @@ async fn root() -> impl Responder { #[web::get("/off")] async fn poweroff(cfg: State) -> Result { - const EXE: &str = "/sbin/poweroff"; - - util::run_as_root(&cfg.doas, EXE) + util::run_as_root(&cfg.doas, "/sbin/poweroff") .kill_on_drop(false) .spawn()?; @@ -86,9 +84,7 @@ async fn ap_config(cfg: State) -> Result { #[web::get("/temp")] async fn temp(cfg: State) -> Result { - const EXE: &str = "/usr/bin/vcgencmd"; - - let out = util::run_as_root(&cfg.doas, EXE) + let out = util::run_as_root(&cfg.doas, "/usr/bin/vcgencmd") .arg("measure_temp") .output() .await?;