10 lines
266 B
Go
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"`
|
||
|
}
|