mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-21 06:09:39 +08:00
14 lines
254 B
Go
14 lines
254 B
Go
package modules
|
|
|
|
var (
|
|
EmailConfigs ResourceManager
|
|
)
|
|
|
|
func init() {
|
|
EmailConfigs = NewNotifyManager("email_config", "email_configs",
|
|
[]string{"username", "password", "hostname", "ssl_global", "hostport"},
|
|
[]string{},
|
|
)
|
|
register(&EmailConfigs)
|
|
}
|