11 lines
202 B
Rust
11 lines
202 B
Rust
|
use serde::Deserialize;
|
||
|
|
||
|
#[derive(Deserialize, Debug)]
|
||
|
pub(crate) struct Config {
|
||
|
pub gitlab: GitlabConfig,
|
||
|
}
|
||
|
|
||
|
#[derive(Deserialize, Debug)]
|
||
|
pub(crate) struct GitlabConfig {
|
||
|
pub token: String,
|
||
|
}
|