add password configuration to Valkey settings

This commit is contained in:
pigwin
2025-01-07 18:28:47 +00:00
parent c6fc0070cf
commit ba558803ff
3 changed files with 14 additions and 5 deletions

View File

@@ -21,6 +21,7 @@ type Config struct {
Port string `json:"port"`
MaxConns int `json:"max_conns"`
TimeoutMs int `json:"timeout_ms"`
Password string `json:"password"` // Add this line
} `json:"valkey"`
Temp string `json:"temp"`
}