aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
//! Configuration to run octopus

pub struct Config {
    app_path: String,
    port: u16,
    handle_ssl: bool,
    cache_path: String,
    repos_path: String,
    repo_discovery: bool,
    repos: Vec<RepoConfig>
}

pub struct RepoConfig {
    name: String,
    description: String,
    category: String,
}