initial commit for 0.5 release

This commit is contained in:
Brad Rydzewski
2016-05-03 16:17:16 -07:00
parent d4fe469843
commit 5825a3d797
24 changed files with 3201 additions and 421 deletions

15
vendor/github.com/joho/godotenv/autoload/autoload.go generated vendored Normal file
View File

@@ -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()
}