organization_code/customer/
mod.rs

1pub struct Customer {
2    id: u64,
3    name: String,
4    email: String,
5}