HomeDisk/types/src/fs/download.rs

11 lines
237 B
Rust
Raw Normal View History

2022-06-08 22:02:20 +00:00
//! HTTP `/fs/download` Request type
use serde::{Deserialize, Serialize};
2022-06-11 08:19:47 +00:00
/// HTTP `/fs/download` Request
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Request {
2022-06-11 08:19:47 +00:00
/// Path of file to be download
pub path: String,
}