1 2 3 4 5 6 7 8 9 10 11 12
pub mod circle; mod circle_test; pub mod path; mod path_test; pub mod rect; mod rect_test; pub mod shape; pub use circle::*; pub use path::*; pub use rect::*; pub use shape::*;