This commit is contained in:
Amin Ghaninia 2024-01-13 00:20:41 -07:00 committed by GitHub
commit 61bb26611a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ as a final aside, if you don't want godotenv munging your env you can just get a
```go
var myEnv map[string]string
myEnv, err := godotenv.Read()
myEnv, err = godotenv.Read()
s3Bucket := myEnv["S3_BUCKET"]
```