| 123456789101112131415161718192021 |
- package config
- import (
- "github.com/runningwater/gohub/pkg/config"
- )
- func init() {
- config.Add("sms", func() map[string]any {
- return map[string]any{
- // 阿里云短信服务配置
- "aliyun": map[string]any{
- "access_key_id": config.Env("SMS_ALIYUN_ACCESS_ID"),
- "access_key_secret": config.Env("SMS_ALIYUN_ACCESS_SECRET"),
- "sign_name": config.Env("SMS_ALIYUN_SIGN_NAME", "阿里云短信测试"),
- "template_code": config.Env("SMS_ALIYUN_TEMPLATE_CODE", "SMS_154950909"),
- },
- }
- })
- }
|