Add new harmony_cli sub-crate

This commit is contained in:
2025-04-08 15:57:22 -04:00
committed by taha
parent 0ba7f2536c
commit 5874ea3963
4 changed files with 51 additions and 4 deletions

9
harmony_cli/Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "harmony_cli"
edition = "2024"
version.workspace = true
readme.workspace = true
license.workspace = true
[dependencies]
clap = "4.5.35"

3
harmony_cli/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}