This commit is contained in:
2022-07-22 22:35:39 +02:00
parent a780ad3b33
commit d6a25648ce
13 changed files with 679 additions and 108 deletions

8
cli/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

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

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