diff --git a/main.go b/main.go index 170f6e7..a574d82 100644 --- a/main.go +++ b/main.go @@ -25,7 +25,6 @@ import ( "strings" "google.golang.org/appengine" - "gopkg.in/yaml.v2" ) @@ -87,11 +86,3 @@ var vanityTmpl, _ = template.New("vanity").Parse(` Nothing to see here; see the package on godoc. `) - -func mustLoad(key string, value *string) { - v := os.Getenv(key) - if v == "" { - log.Fatalf("missing %v env variable", key) - } - *value = v -}