1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-18 04:40:03 +02:00
thalos/app/service/redis/config.go

16 lines
309 B
Go

package redis
type Config struct {
Addr string `json:"addr"`
Password string `json:"password"`
DB int `json:"db"`
CacheID string `json:"cache_id"`
Prefix string `json:"prefix"`
}
var DefaultConfig = Config{
Addr: "localhost:6379",
Password: "",
DB: 0,
Prefix: "ship",
}