Reorganize imports in data_forms module

mb created

Change summary

parsers/src/data_forms/mod.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

parsers/src/data_forms/mod.rs 🔗

@@ -4,10 +4,10 @@
 // License, v. 2.0. If a copy of the MPL was not distributed with this
 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
-pub use data_form::*;
-pub use validate::*;
-
 /// XEP-0004: Data Forms
 pub mod data_form;
 
 pub mod validate;
+
+pub use data_form::*;
+pub use validate::*;