initial commit

This commit is contained in:
DecDuck 2025-12-13 14:04:35 +11:00
commit 1cd607f5b5
4 changed files with 12 additions and 0 deletions

1
cli/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

6
cli/Cargo.toml Normal file
View file

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

2
cli/README.md Normal file
View file

@ -0,0 +1,2 @@
# downpour
A cli tool to upload local files to Drop's depot infrastructure.

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

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