drone-ssh/vendor/github.com/joho/godotenv/autoload/autoload.go
Bo-Yi Wu 3f99537b2e update vendor
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2016-12-27 16:40:55 +08:00

16 lines
232 B
Go

package autoload
/*
You can just read the .env file on import just by doing
import _ "github.com/joho/godotenv/autoload"
And bob's your mother's brother
*/
import "github.com/joho/godotenv"
func init() {
godotenv.Load()
}