wireguard-dashboard/config/cache.go

10 lines
195 B
Go
Raw Normal View History

2024-07-05 14:41:35 +08:00
package config
2024-07-11 16:21:08 +08:00
type cache struct {
Type string `yaml:"type"`
2024-07-05 14:41:35 +08:00
Host string `yaml:"host"`
Port int `yaml:"port"`
Password string `yaml:"password"`
Db int `yaml:"db"`
}