style(host): rustfmt sweep for the console-sweep push

b8da32e8 landed with two call sites and a log line rustfmt rewraps;
CI's cargo fmt --all --check gate was failing on every run since.
No code change.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-15 21:32:08 +02:00
parent 75b3c94f60
commit 6b9f261dff
2 changed files with 26 additions and 8 deletions
+14 -2
View File
@@ -252,7 +252,13 @@ pub fn serve(
);
tokio::try_join!(
nvhttp::run(state.clone()),
crate::mgmt::run(state.clone(), mgmt, Some(np.clone()), stats.clone(), gamestream),
crate::mgmt::run(
state.clone(),
mgmt,
Some(np.clone()),
stats.clone(),
gamestream
),
crate::punktfunk1::serve(native_opts, native.mgmt_port, np, stats.clone()),
)?;
} else {
@@ -263,7 +269,13 @@ pub fn serve(
(GameStream OFF — pass --gamestream for stock-Moonlight compat)"
);
tokio::try_join!(
crate::mgmt::run(state.clone(), mgmt, Some(np.clone()), stats.clone(), gamestream),
crate::mgmt::run(
state.clone(),
mgmt,
Some(np.clone()),
stats.clone(),
gamestream
),
crate::punktfunk1::serve(native_opts, native.mgmt_port, np, stats.clone()),
)?;
}