1#[path = "uttt/mod.rs"] 2mod inner_uttt; 3 4#[path = "ttt/mod.rs"] 5mod inner_ttt; 6 7pub mod uttt { 8 pub use inner_uttt::*; 9 pub use inner_ttt::*; 10}