1
 2
 3
 4
 5
 6
 7
 8
 9
10
use serde::Deserialize;

#[derive(Clone, Deserialize, Debug)]
pub struct GithubConfig {
    pub host: Option<String>,
    pub owner: String,
    pub repo: String,
    pub cargolifter_token: Option<String>,
    pub default_branch: Option<String>,
}