commit 6fe2bbe130713ba903dc24f4576ccad3e242a56f Author: femsci Date: Fri Nov 17 18:38:40 2023 +0100 spookie skel diff --git a/src/umogen-cli/Cargo.toml b/src/umogen-cli/Cargo.toml new file mode 100644 index 0000000..bafd02e --- /dev/null +++ b/src/umogen-cli/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "umogen-cli" +version = "0.1.0" +edition = "2021" + +[dependencies] +clap = "4.4.8" diff --git a/src/umogen-cli/src/main.rs b/src/umogen-cli/src/main.rs new file mode 100644 index 0000000..df2d312 --- /dev/null +++ b/src/umogen-cli/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, meowmeow~"); +}