1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

refactor: switch from_fn to stable version

This commit is contained in:
Rob Ede
2024-09-11 10:31:11 -04:00
parent 431ebe8c2b
commit e962a2a9b1
4 changed files with 11 additions and 10 deletions

View File

@ -1,7 +1,7 @@
use std::io;
use actix_web::{App, HttpServer};
use actix_web_lab::{extract::ThinData, middleware::from_fn};
use actix_web::{middleware::from_fn, App, HttpServer};
use actix_web_lab::extract::ThinData;
use tracing_actix_web::TracingLogger;
mod logging;