about summary refs log tree commit diff stats
path: root/crates/rocie-cli/src/main.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-10-08 12:01:47 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-10-08 12:01:47 +0200
commitd45cc8fab35501b6c16f68cac084d861539a3f83 (patch)
tree3f0aca576652a912afd8c368b92d05a38c41162c /crates/rocie-cli/src/main.rs
parentchore(Cargo.{lock,toml}): Update (diff)
downloadserver-d45cc8fab35501b6c16f68cac084d861539a3f83.zip
feat(crates/rocie-cli): Add support for unit-properties
Diffstat (limited to '')
-rw-r--r--crates/rocie-cli/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/rocie-cli/src/main.rs b/crates/rocie-cli/src/main.rs
index e3188c8..26e0f62 100644
--- a/crates/rocie-cli/src/main.rs
+++ b/crates/rocie-cli/src/main.rs
@@ -18,6 +18,7 @@ async fn main() -> Result<()> {
         Command::Product { command } => handle::product(&config, command).await?,
         Command::Unit { command } => handle::unit(&config, command).await?,
         Command::Barcode { command } => handle::barcode(&config, command).await?,
+        Command::UnitProperty { command } => handle::unit_property(&config, command).await?,
     }
 
     Ok(())