wireguard-dashboard/config/redis.go

9 lines
164 B
Go
Raw Normal View History

2024-03-05 16:59:37 +08:00
package config
type redis struct {
Host string `yaml:"host"`
Port int `yaml:"port"`
Password string `yaml:"password"`
Db int `yaml:"db"`
}