We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4d883 commit 7dd2d7aCopy full SHA for 7dd2d7a
src/main.rs
@@ -10,7 +10,11 @@ fn main() {
10
// dotenvy iterator returns result, unwrap to get the value, map
11
// extracts the value from the result, and collect key/value
12
// pairs into a vector
13
- let dotenv_vars: Vec<_> = dotenvy::dotenv_iter().unwrap().map(|x| x.unwrap()).collect();
+ let dotenv_vars:
14
+ Vec<_> = dotenvy::dotenv_iter()
15
+ .unwrap()
16
+ .map(|x| x.unwrap())
17
+ .collect();
18
19
// Print env vars to stdout
20
match dotenv() {
0 commit comments