wireguard-dashboard/config/mail.go
2024-03-22 11:40:34 +08:00

10 lines
266 B
Go

package config
type mail struct {
Host string `json:"host" yaml:"host"`
Port int `json:"port" yaml:"port"`
User string `json:"user" yaml:"user"`
Password string `json:"password" yaml:"password"`
SkipTls bool `json:"skipTls" yaml:"skipTls"`
}