1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-03 01:56:38 +02:00

add cookies support for response

This commit is contained in:
Nikolay Kim
2017-10-14 10:40:58 -07:00
parent 5c9f813d28
commit f0531793b4
3 changed files with 71 additions and 7 deletions

View File

@@ -49,4 +49,8 @@ pub use resource::{Reply, Resource};
pub use route::{Route, RouteFactory, RouteHandler};
pub use server::HttpServer;
pub use context::HttpContext;
// re-exports
pub use cookie::{Cookie, CookieBuilder};
pub use cookie::{ParseError as CookieParseError};
pub use route_recognizer::Params;