diff options
Diffstat (limited to 'rola-cli')
| -rw-r--r-- | rola-cli/Cargo.toml | 8 | ||||
| -rw-r--r-- | rola-cli/src/main.rs | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/rola-cli/Cargo.toml b/rola-cli/Cargo.toml new file mode 100644 index 0000000..433b351 --- /dev/null +++ b/rola-cli/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rola-cli" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true + +[dependencies] diff --git a/rola-cli/src/main.rs b/rola-cli/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/rola-cli/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |
