style: cargo fmt

This commit is contained in:
Radical 2025-04-29 00:43:43 +02:00
parent 96250864af
commit bebad3be9b
5 changed files with 14 additions and 15 deletions

View file

@ -1,8 +1,7 @@
use actix_web::{web, Scope};
use actix_web::{Scope, web};
mod stats;
pub fn web() -> Scope {
web::scope("/v1")
.service(stats::res)
web::scope("/v1").service(stats::res)
}