autoload.go

 1package autoload
 2
 3/*
 4	You can just read the .env file on import just by doing
 5
 6		import _ "github.com/joho/godotenv/autoload"
 7
 8	And bob's your mother's brother
 9*/
10
11import "github.com/joho/godotenv"
12
13func init() {
14	godotenv.Load()
15}