aboutsummaryrefslogtreecommitdiff
path: root/src/model/config.rs
blob: 2c5455e5a61db634080589461bfb2afc7ad6a850 (plain)
1
2
3
4
5
6
7
use serde::Deserialize;

#[derive(Clone, Deserialize)]
pub struct Config {
    pub secure_cookies: bool,
    pub sendmail_path: Option<String>,
}