You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- transfer variables from env-files to the environment;
426
-
- transfer data from the environment into Go structures;
427
-
- saving Go structure's fields to the environment.
428
-
- saving Go structure's fields to the env files.
426
+
- transfer variables from env-files to the environment;
427
+
- transfer data from the environment into Go structures;
428
+
- saving Go structure's fields to the environment;
429
+
- saving Go structure's fields to the env files.
429
430
430
431
### Parsing env files
431
432
@@ -436,10 +437,10 @@ To change the number of goroutines you need to use the `ParallelTasks` method.
436
437
437
438
There are several methods for parsing env files:
438
439
439
-
-`Load` loads new keys only;
440
-
-`LoadSafe` loads new keys only and doesn't handles variables like `${var}` or `$var` - doesn't turn them into a finite value;
441
-
-`Update` loads keys from the env-file into environment, update existing keys;
442
-
-`UpdateSafe` loads keys from the env-file into environment, update existing keys, and doesn't handles variables like `${var}` or `$var` - doesn't turn them into a finite value.
440
+
-`Load` loads new keys only;
441
+
-`LoadSafe` loads new keys only and doesn't handles variables like `${var}` or `$var` - doesn't turn them into a finite value;
442
+
-`Update` loads keys from the env-file into environment, update existing keys;
443
+
-`UpdateSafe` loads keys from the env-file into environment, update existing keys, and doesn't handles variables like `${var}` or `$var` - doesn't turn them into a finite value.
443
444
444
445
The `Update` function works like the `source` command in UNIX-Like operating systems.
0 commit comments