use serde::Deserialize; #[derive(Deserialize, Debug)] pub(crate) struct Config { pub gitlab: GitlabConfig, } #[derive(Deserialize, Debug)] pub(crate) struct GitlabConfig { pub token: String, }