mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2025-02-17 16:25:56 +00:00
14 lines
187 B
Go
14 lines
187 B
Go
|
package mailhog
|
||
|
|
||
|
func DefaultConfig() *Config {
|
||
|
return &Config{
|
||
|
BindAddr: "0.0.0.0:1025",
|
||
|
Hostname: "mailhog.example",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type Config struct {
|
||
|
BindAddr string
|
||
|
Hostname string
|
||
|
}
|