mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-09-19 02:37:24 +08:00
15 lines
324 B
Go
15 lines
324 B
Go
package modules
|
|
|
|
var (
|
|
SmsConfigs ResourceManager
|
|
)
|
|
|
|
func init() {
|
|
SmsConfigs = NewNotifyManager("sms_config", "sms_configs",
|
|
[]string{"type", "access_key_id", "access_key_secret", "signature",
|
|
"sms_template_one", "sms_template_two", "sms_template_three", "sms_check_code"},
|
|
[]string{},
|
|
)
|
|
register(&SmsConfigs)
|
|
}
|