9 lines
162 B
Go
9 lines
162 B
Go
package sms
|
|
|
|
import "context"
|
|
|
|
type SMS interface {
|
|
Name() string
|
|
SendCode(ctx context.Context, areaCode string, phoneNumber string, verifyCode string) error
|
|
}
|