1 2 3 4 5 6 7 8 9 10
use actix_web::web; pub(crate) mod product; pub(crate) mod unit; pub(crate) fn register_paths(cfg: &mut web::ServiceConfig) { cfg.service(product::register_product) .service(product::associate_barcode) .service(unit::register_unit); }