gitlib/jsonb/
settings.rs

1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct Settings {
    pub groups : Vec<String>,
    pub projects : Vec<String>,
    pub secret : Option<String>
}