use serde::Deserialize;
#[derive(Deserialize, Debug)]
pub struct Version {
pub version: String,
}
#[derive(Deserialize, Debug)]
pub struct User {
pub login: String,
}
#[derive(Deserialize, Debug)]
pub struct UsersSearch {
pub data: Vec<User>,
}
#[derive(Deserialize, Debug)]
pub struct Repo {
pub name: String,
pub owner: User,
pub updated_at: String,
}
#[derive(Deserialize, Debug)]
pub struct RepoSearch {
pub data: Vec<Repo>,
}