HomeDisk/types/src/fs/create_dir.rs

11 lines
264 B
Rust
Raw Normal View History

2022-06-08 22:02:20 +00:00
//! HTTP `/fs/createdir` Request and Response types
2022-05-27 13:58:16 +00:00
use serde::{Deserialize, Serialize};
2022-06-11 08:19:47 +00:00
/// HTTP `/fs/createdir` Request
2022-05-27 13:58:16 +00:00
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Request {
2022-06-11 08:19:47 +00:00
/// Path to directory wich will be created
2022-05-27 13:58:16 +00:00
pub path: String,
}