I\'m using the Actix framework to create a simple server and I\'ve implemented a file upload using a simple HTML frontend.
use actix_web::web::Data; use acti
You have to register your data before you can use it:
App::new().data(AppState::new())