diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-10-08 12:01:47 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-10-08 12:01:47 +0200 |
| commit | d45cc8fab35501b6c16f68cac084d861539a3f83 (patch) | |
| tree | 3f0aca576652a912afd8c368b92d05a38c41162c /crates/rocie-cli/src/main.rs | |
| parent | chore(Cargo.{lock,toml}): Update (diff) | |
| download | server-d45cc8fab35501b6c16f68cac084d861539a3f83.zip | |
feat(crates/rocie-cli): Add support for unit-properties
Diffstat (limited to '')
| -rw-r--r-- | crates/rocie-cli/src/main.rs | 1 |
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(()) |
