Añade soporte para sesiones y cookies

This commit is contained in:
Manuel Cillero 2025-07-27 22:55:14 +02:00
parent a1bb6cd12d
commit 66289e131e
6 changed files with 246 additions and 21 deletions

View file

@ -1,12 +1,13 @@
//! Gestión del servidor y servicios web (con [Actix Web](https://docs.rs/actix-web)).
pub use actix_session::Session;
pub use actix_web::body::BoxBody;
pub use actix_web::dev::Server;
pub use actix_web::dev::ServiceFactory as Factory;
pub use actix_web::dev::ServiceRequest as Request;
pub use actix_web::dev::ServiceResponse as Response;
pub use actix_web::{http, rt, web};
pub use actix_web::{App, Error, HttpRequest, HttpResponse, HttpServer};
pub use actix_web::{cookie, http, rt, web};
pub use actix_web::{App, Error, HttpMessage, HttpRequest, HttpResponse, HttpServer};
#[doc(hidden)]
pub use actix_web::test;