mirror of https://github.com/rwf2/Rocket.git
Remove public qualification from private data modules.
This commit is contained in:
parent
1849365eda
commit
81113ecf50
|
@ -1,8 +1,8 @@
|
||||||
//! Types and traits for reading and parsing request body data.
|
//! Types and traits for reading and parsing request body data.
|
||||||
|
|
||||||
#[cfg(any(test, feature = "testing"))] pub mod test_data;
|
#[cfg(any(test, feature = "testing"))] mod test_data;
|
||||||
#[cfg(not(any(test, feature = "testing")))] pub mod data;
|
#[cfg(not(any(test, feature = "testing")))] mod data;
|
||||||
#[cfg(not(any(test, feature = "testing")))] pub mod data_stream;
|
#[cfg(not(any(test, feature = "testing")))] mod data_stream;
|
||||||
mod from_data;
|
mod from_data;
|
||||||
|
|
||||||
pub use self::from_data::{FromData, Outcome};
|
pub use self::from_data::{FromData, Outcome};
|
||||||
|
|
Loading…
Reference in New Issue