first push

This commit is contained in:
ghe0 2024-12-22 03:11:38 +02:00
commit eae2aa210f
Signed by: ghe0
GPG Key ID: 451028EE56A0FBB4
5 changed files with 19 additions and 0 deletions

1
.gitignore vendored Normal file

@ -0,0 +1 @@
target

6
cli-mock/Cargo.toml Normal file

@ -0,0 +1,6 @@
[package]
name = "cli-mock"
version = "0.1.0"
edition = "2021"
[dependencies]

3
cli-mock/src/main.rs Normal file

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

6
daemon-mock/Cargo.toml Normal file

@ -0,0 +1,6 @@
[package]
name = "daemon-mock"
version = "0.1.0"
edition = "2021"
[dependencies]

3
daemon-mock/src/main.rs Normal file

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