wireguard-dashboard/config/redis.go
2024-07-05 14:41:35 +08:00

9 lines
164 B
Go

package config
type redis struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
Password string `yaml:"password"`
Db int `yaml:"db"`
}