A templating library for injecting variables from multiple external sources
This is a simple example showing how to pull values from the environment
```
async fn main() { std::env::set_var("NAME", "John Wick"); let input = String::from("Hi %env:NAME%!"); let output = germinate::process().await.unwrap();
assert_eq!(String::from("Hi John Wick"), output);
} ```
Currently supported sources:
env
- Load values from environment variablesawsssm
- Load values from the AWS Systems Manager Parameter Store