wireguard-dashboard/config/mail.go

10 lines
266 B
Go
Raw Normal View History

2024-03-22 11:40:34 +08:00
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"`
}