Init commit

main
happynullsky 2025-03-15 08:27:16 -04:00
commit 06a41c623a
Signed by: happynullsky
GPG Key ID: 3961E80B7C84D9D1
4 changed files with 13 additions and 0 deletions

2
.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
/target
Cargo.lock

6
Cargo.toml 100644
View File

@ -0,0 +1,6 @@
[package]
name = "hello_i2p"
version = "0.1.0"
edition = "2024"
[dependencies]

2
README.md 100644
View File

@ -0,0 +1,2 @@
# Hello I2P!
This is my first project in I2P

3
src/main.rs 100644
View File

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