// Copyleft (ɔ) 2021-2021 The Senpy Club // SPDX-License-Identifier: GPL-3.0-only use serde_derive::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug)] pub struct GitHubAPIResponse { pub sha: String, pub url: String, pub tree: Vec, pub truncated: bool, } #[derive(Serialize, Deserialize, Debug)] pub struct GitHubAPIResponseTree { pub path: String, pub mode: String, #[serde(rename = "type")] pub _type: String, pub sha: String, pub url: String, } #[derive(Serialize, Deserialize, Debug)] pub struct SenpyRandom { pub(crate) language: String, pub image: String, }