first cli (wip)

This commit is contained in:
2023-03-27 17:53:41 +02:00
commit 4725e096f4
9 changed files with 1636 additions and 0 deletions

11
src/config.rs Normal file
View File

@@ -0,0 +1,11 @@
use serde::Deserialize;
#[derive(Deserialize, Debug)]
pub(crate) struct Config {
pub gitlab: GitlabConfig,
}
#[derive(Deserialize, Debug)]
pub(crate) struct GitlabConfig {
pub token: String,
}