mirror of
https://github.com/evilsocket/shieldwall.git
synced 2021-09-07 00:28:37 +03:00
10 lines
175 B
Go
10 lines
175 B
Go
package mailer
|
|
|
|
type Config struct {
|
|
Address string `yaml:"address"`
|
|
Port int `yaml:"port"`
|
|
Username string `yaml:"username"`
|
|
Password string `yaml:"password"`
|
|
}
|
|
|