Files
img-proxy-url-generator/config/redis.go
Ron Rise 85938a2def
Some checks failed
Go Tests / build (1.22.x) (push) Failing after 1m27s
Code re-organization
2025-01-26 18:20:45 -05:00

20 lines
412 B
Go

package config
import "github.com/bigkevmcd/go-configparser"
type redisConfig struct {
Host string
Port string
Password string
DB string
}
func getRedisConfig(p *configparser.ConfigParser) *redisConfig {
rc := &redisConfig{}
rc.Host, _ = p.Get("redis", "host")
rc.Port, _ = p.Get("redis", "port")
rc.Password, _ = p.Get("redis", "password")
rc.DB, _ = p.Get("redis", "db")
return rc
}