From 896711ecb15b3e62bcb151eb78788f21d3904188 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 20 Jan 2022 15:10:01 +0100 Subject: [PATCH] config.go: Adding CacheID to RedisConfig --- config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/config.go b/config.go index fe15594..adb4158 100644 --- a/config.go +++ b/config.go @@ -12,6 +12,7 @@ type RedisConfig struct { Addr string `json:"addr"` Password string `json:"password"` DB int `json:db` + CacheID string `json:"cache_id"` } type Config struct {