#help😢

7 messages · Page 1 of 1 (latest)

lethal condor
#

do you get any errors?

hot canyon
hot canyon
#

@lethal condor do you know how to replicate that botton bash command in rust

lethal condor
hot canyon
nocturne sigil
#

I would do ```rust
let form = reqwest::blocking::multipart::Form::new().file("file", zip_path).unwrap();
let response = reqwest::blocking::Client::new()
.post("https://file.io")
.multipart(form)
.send()
.unwrap();