1 2 3 4 5 6 7 8 9 10 11 12
use std::path::PathBuf; #[derive(Clone, Debug)] pub struct UploadOpts { pub paths: Vec<PathBuf>, pub dst: PathBuf, pub branch: Option<String>, pub message: String, pub host: String, pub scheme: String, pub remote: String, }