aboutsummaryrefslogtreecommitdiff
path: root/src/settings.rs
blob: 9d34c0dfde61a1afeb6afc9cc008da1900991d22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct Settings {
    pub installed_apps: &'static [&'static crate::apps::AppConfig],
    pub database_url: &'static str,
}

impl Default for Settings {
    fn default() -> Self {
        Self {
            installed_apps: &[],
            database_url: "",
        }
    }
}