structure_test/
lib.rs

1mod customer;
2mod order;
3mod product;
4
5pub use customer::Customer;
6pub use order::Order;
7pub use product::category::Category;
8pub use product::Product;