/slɒθ/
:sloth:Small crate to read secrets from Hashicorp Vault. Based on vaultrs.
```rust use vaultier::SecretClient; use serde::Deserialize;
struct MySecrets { pub username: String, pub password: String, }
let address = "
// With token or default feature enabled let client = SecretClient::new(address, mount, base_path, None).unwrap();
// With auth feature enabled
let authmount = "
// read secrets from that base path
let secrets = client.read_secrets::
// read secrets from the passed path relative to the base path: mount/data/basepath/my-secrets
let secrets = client.readsecrets_from::
```