re-export KeepAlive in http mod

This commit is contained in:
Rob Ede 2022-02-04 19:44:30 +00:00
parent 3eb44ab7bf
commit b2cb6e3a1a
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Unreleased - 2021-xx-xx
### Added
- Implement `Responder` for `Vec<u8>`. [#2625]
- Re-export `KeepAlive` in `http` mod. [#2625]
[#2625]: https://github.com/actix/actix-web/pull/2625

View File

@ -3,4 +3,4 @@
pub mod header;
// TODO: figure out how best to expose http::Error vs actix_http::Error
pub use actix_http::{uri, ConnectionType, Error, Method, StatusCode, Uri, Version};
pub use actix_http::{uri, ConnectionType, Error, KeepAlive, Method, StatusCode, Uri, Version};