diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/src/api.rs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/common/src/api.rs b/common/src/api.rs deleted file mode 100644 index 27541a2..0000000 --- a/common/src/api.rs +++ /dev/null @@ -1,15 +0,0 @@ -use crate::{DirectoryInfo, ItemInfo}; -use serde::{Deserialize, Serialize}; - -#[derive(Debug, Clone, Serialize, Deserialize)] -pub enum ApiNode { - Directory { - identifier: String, - info: DirectoryInfo, - children: Vec<String>, - }, - Item { - identifier: String, - info: ItemInfo, - }, -} |