diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-15 13:56:12 -0300 |
---|---|---|
committer | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-08-15 13:56:12 -0300 |
commit | ad30def5420185dfbe2107b1ec972bddc975b358 (patch) | |
tree | a5a4d1039dc4d1c5dadc7d19dad23e87bb85464d /session.go | |
parent | b0bb22aa9c9f1d5b2e582e58bf20c6856feb87ec (diff) |
redis config
Diffstat (limited to 'session.go')
-rw-r--r-- | session.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ import ( var cache redis.Conn func InitCache() { - conn, err := redis.DialURL("redis://localhost") + conn, err := redis.DialURL(GetConfigValue("redis")) if err != nil { panic(err) } |