chore(fmt): reformatage cargo fmt résiduel

Deux reformatages sans changement de comportement (device.rs, web-server/lib.rs),
laissés de côté hors périmètre au fil de plusieurs tickets précédents.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-18 23:15:39 +02:00
parent 5f15cdbf28
commit 2db37a50fa
2 changed files with 2 additions and 5 deletions

View File

@ -584,8 +584,7 @@ impl ServerState {
async fn authenticate_session(&self, token: &str) -> Option<AuthenticatedDevice> {
let token_bytes = decode_session_token(token).ok()?;
self
.app
self.app
.authenticate_session
.execute(AuthenticateSessionInput { token_bytes })
.await