diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2024-07-30 23:19:58 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2024-07-30 23:19:58 +0200 |
commit | 33132cf54d487c4b32d2fe0013cbe42997de78e8 (patch) | |
tree | 833aff9331bc6e5475801d9c60679a60a1312390 | |
download | maesch-33132cf54d487c4b32d2fe0013cbe42997de78e8.tar maesch-33132cf54d487c4b32d2fe0013cbe42997de78e8.tar.bz2 maesch-33132cf54d487c4b32d2fe0013cbe42997de78e8.tar.zst |
initial commit
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Cargo.lock | 7 | ||||
-rw-r--r-- | Cargo.toml | 6 | ||||
-rw-r--r-- | src/bin/cli/main.rs | 3 | ||||
-rw-r--r-- | src/bin/daemon/main.rs | 5 |
5 files changed, 22 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..d905e2d --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "lia-muffin-wg-tool" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f38b0dc --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "lia-muffin-wg-tool" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/src/bin/cli/main.rs b/src/bin/cli/main.rs new file mode 100644 index 0000000..08cf702 --- /dev/null +++ b/src/bin/cli/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, CLI!"); +} diff --git a/src/bin/daemon/main.rs b/src/bin/daemon/main.rs new file mode 100644 index 0000000..505671a --- /dev/null +++ b/src/bin/daemon/main.rs @@ -0,0 +1,5 @@ +use std::process::Command; + +fn main() { + println!("Hello, daemon!"); +} |