about summary refs log tree commit diff stats
path: root/crates/rocie-server/src/api/set/mod.rs
blob: 8a2a1df46239feac7d67c9f44b2fec5b40793f88 (plain) (blame)
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);
}