From a280e9eb94076d2a71fbb2bfee1fda41d01aa3e2 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 13 Dec 2017 09:28:55 -0500 Subject: [PATCH] comment Signed-off-by: Kenneth Reitz --- herald.go | 1 + 1 file changed, 1 insertion(+) diff --git a/herald.go b/herald.go index 4e3f42a..5b01dd2 100644 --- a/herald.go +++ b/herald.go @@ -19,6 +19,7 @@ var BUILDPACKS = []string { "python", "php", "nodejs", "ruby", "jvm-common" } // Redis Stuff. var REDIS_URL = os.Getenv("REDIS_URL") +// Connects to Redis instance, returns connection object. func RedisConnect() redis.Conn { c, err := redis.DialURL(REDIS_URL) if err != nil {