This commit is contained in:
nora 2024-08-15 16:57:32 +02:00
parent d34db09fd1
commit c0f9687696
11 changed files with 529 additions and 505 deletions

6
ssh/Cargo.toml Normal file
View file

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

3
ssh/README.md Normal file
View file

@ -0,0 +1,3 @@
# ssh
`ssh(1)` SSH client.

3
ssh/src/main.rs Normal file
View file

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