Added EnvVar and modified functions
Some checks failed
Release Tagging / release (pull_request) Successful in 40s
Rust Build / Check (pull_request) Successful in 32s
Rust Build / Test Suite (pull_request) Failing after 40s
Rust Build / Rustfmt (pull_request) Failing after 31s
Rust Build / Clippy (pull_request) Successful in 34s
Rust Build / build (pull_request) Successful in 34s

This commit is contained in:
2025-10-10 13:19:26 -04:00
parent 86c5050c7b
commit 515b228250
2 changed files with 78 additions and 27 deletions

View File

@@ -1,2 +1,15 @@
pub mod environment;
pub mod keys;
#[derive(Debug, Default, Clone)]
pub struct EnvVar {
pub key: String,
pub value: String,
}
pub fn init_envvar(key: &str, value: &str) -> EnvVar {
EnvVar {
key: key.to_string(),
value: value.to_string(),
}
}