|
|
@@ -31,7 +31,7 @@ func NewAliyunSms(region, accessKey, accessSecret, signName string) sms.ISms {
|
|
|
}
|
|
|
|
|
|
func (self *aliyunSms) Send(phone, msg string) error {
|
|
|
- return utl.ErrNotImplement
|
|
|
+ return utl.ErrNotImplemented
|
|
|
}
|
|
|
|
|
|
func (self *aliyunSms) SendTpl(phone, tpl string, params []byte) error {
|
|
|
@@ -58,11 +58,11 @@ func (self *aliyunSms) SendTpl(phone, tpl string, params []byte) error {
|
|
|
}
|
|
|
|
|
|
func (self *aliyunSms) GetBalance() (float64, error) {
|
|
|
- return 0.0, utl.ErrNotImplement
|
|
|
+ return 0.0, utl.ErrNotImplemented
|
|
|
}
|
|
|
|
|
|
func (self *aliyunSms) GetAvailable() (int64, error) {
|
|
|
- return 0, utl.ErrNotImplement
|
|
|
+ return 0, utl.ErrNotImplemented
|
|
|
}
|
|
|
|
|
|
func (self *aliyunSms) Name() string {
|