This commit is contained in:
Johannes Heuel
2022-06-25 17:16:13 +02:00
commit 9449d992c0
33 changed files with 5100 additions and 0 deletions

8
common/src/lib.rs Normal file
View File

@@ -0,0 +1,8 @@
use serde::{Serialize, Deserialize};
#[derive(Serialize,Deserialize)]
pub struct OutputPicture {
pub thumbnail: Option<String>,
pub width: u32,
pub height: u32,
}