1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-31 08:57:00 +02:00

rename extract to types

This commit is contained in:
Nikolay Kim
2019-03-16 21:43:48 -07:00
parent 4a4826b23a
commit 725ee3d396
8 changed files with 18 additions and 16 deletions

13
src/types/mod.rs Normal file
View File

@@ -0,0 +1,13 @@
//! Helper types
mod form;
mod json;
mod path;
mod payload;
mod query;
pub use self::form::{Form, FormConfig};
pub use self::json::{Json, JsonConfig};
pub use self::path::Path;
pub use self::payload::{Payload, PayloadConfig};
pub use self::query::Query;