sample_shoe_co 0.0.1

A demo crate simulating a shoe company with basic inventory and order processing examples.
Documentation
1
2
3
4
5
6
7
8
9
pub mod employee;
pub mod product;
pub mod warehouse;
pub mod warehouse_product;

pub use employee::Employee::{self, Associate, Manager};
pub use product::*;
pub use warehouse::*;
pub use warehouse_product::Shoe;