This commit is contained in:
PoliEcho 2025-07-25 10:52:08 +02:00
commit 89152e24b3
6 changed files with 30 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
.vscode

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "pee_2_pee"
version = "0.1.0"

15
Cargo.toml Normal file
View File

@ -0,0 +1,15 @@
[package]
name = "pee_2_pee"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "server"
path = "src/server/main.rs"
[[bin]]
name = "client"
path = "src/client/main.rs"
[dependencies]

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

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

0
src/lib.rs Normal file
View File

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

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