remove unecessary assignment in autoloader

This commit is contained in:
buddhamagnet 2015-06-09 18:24:15 +01:00
parent f6581828bb
commit 2ed25fcb28
1 changed files with 1 additions and 1 deletions

View File

@ -11,5 +11,5 @@ package autoload
import "github.com/joho/godotenv"
func init() {
_ = godotenv.Load()
godotenv.Load()
}