organization_code/
lib.rs

1pub use customer::Customer;
2pub use product::{Category, Product};
3
4mod product;
5mod customer;
6
7
8mod order;