From 3f99537b2ec10eaec4e3972eae73f5fd82994496 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Tue, 27 Dec 2016 16:40:55 +0800 Subject: [PATCH] update vendor Signed-off-by: Bo-Yi Wu --- .../github.com/joho/godotenv/autoload/autoload.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 vendor/github.com/joho/godotenv/autoload/autoload.go diff --git a/vendor/github.com/joho/godotenv/autoload/autoload.go b/vendor/github.com/joho/godotenv/autoload/autoload.go new file mode 100644 index 0000000..fbcd2bd --- /dev/null +++ b/vendor/github.com/joho/godotenv/autoload/autoload.go @@ -0,0 +1,15 @@ +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() +}