dilpreetpackage/
lib.rs

1// use crate::product::category;
2//! # Online Bussiness 
3//! This is a rust library for online store 
4/// This is product module
5pub use customer::Customer;
6pub use order::Order;
7pub use product::{Category, Product};
8mod product;
9mod customer;
10mod order;