Flash message middleware for actix-web
2.0.
For actix-web
1.0 support, check out actix-web-flash
.
```rust use actix_web::{web, App, HttpRequest, HttpResponse, HttpServer, Responder};
async fn showflash(flash: actixflash::Message
async fn setflash(req: HttpRequest) -> actixflash::Response
async fn main() -> std::io::Result<()> { HttpServer::new(move || { App::new() .wrap(actixflash::Flash::default()) .route("/showflash", web::get().to(showflash)) .route("/setflash", web::get().to(set_flash)) }) .bind("127.0.0.1:8080")? .run() .await } ```
Current version: 0.1.0
License: MIT/Apache-2.0