diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-07-31 16:52:46 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-07-31 16:52:46 +0200 |
| commit | 0c651f11920350a4aa96aa24f8fe15b28390aed2 (patch) | |
| tree | 724e5e79d6c6000077cd0c33c669c32475ed069f /common/src | |
| parent | e6e424833315a6c0d04c7706d539f57e1b1df0f7 (diff) | |
| download | jellything-0c651f11920350a4aa96aa24f8fe15b28390aed2.tar jellything-0c651f11920350a4aa96aa24f8fe15b28390aed2.tar.bz2 jellything-0c651f11920350a4aa96aa24f8fe15b28390aed2.tar.zst | |
update remuxer for new schema
Diffstat (limited to 'common/src')
| -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, - }, -} |