Added shell action

This commit is contained in:
2022-08-10 16:46:56 +02:00
parent f5e1e3027a
commit faf15d1398
9 changed files with 181 additions and 19 deletions

26
cuddle_cli/src/config.rs Normal file
View File

@@ -0,0 +1,26 @@
use envconfig::Envconfig;
pub enum CuddleFetchPolicy {
Always,
Once,
}
#[derive(Envconfig, Clone)]
pub struct CuddleConfig {
#[envconfig(from = "CUDDLE_FETCH_POLICY", default = "once")]
fetch_policy: String,
}
impl CuddleConfig {
pub fn from_env() -> anyhow::Result<Self> {
CuddleConfig::init_from_env().map_err(|e| anyhow::Error::from(e))
}
pub fn get_fetch_policy(&self) -> anyhow::Result<CuddleFetchPolicy> {
match self.fetch_policy.clone().to_lowercase().as_str() {
"always" => Ok(CuddleFetchPolicy::Always),
"once" => Ok(CuddleFetchPolicy::Once),
_ => Err(anyhow::anyhow!("could not parse fetch policy")),
}
}
}