remove unnecessary assignments

following commit 2ed25fcb28.
This commit is contained in:
2tef 2023-01-20 13:46:06 -03:00
parent 4c5b39e062
commit ab92349622
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ import _ "github.com/joho/godotenv/autoload"
While `.env` in the project root is the default, you don't have to be constrained, both examples below are 100% legit
```go
_ = godotenv.Load("somerandomfile")
_ = godotenv.Load("filenumberone.env", "filenumbertwo.env")
godotenv.Load("somerandomfile")
godotenv.Load("filenumberone.env", "filenumbertwo.env")
```
If you want to be really fancy with your env file you can do comments and exports (below is a valid env file)