clean up for rust fmt

This commit is contained in:
Jon Lim 2024-04-02 22:21:04 -07:00
parent 4fb51ad70a
commit bcc0bed4f5
1 changed files with 2 additions and 1 deletions

View File

@ -373,9 +373,10 @@ async fn test_auto_async() {
#[scope("/test")]
mod scope_module {
use crate::guard_module;
use actix_web::{delete, get, post, route, routes, web, HttpResponse, Responder};
use crate::guard_module;
#[get("/test/guard", guard = "guard_module::guard")]
pub async fn test_guard() -> impl Responder {
HttpResponse::Ok()