voucher/internal/biz/mixrepos/sms.go

8 lines
123 B
Go

package mixrepos
import "context"
type SmsMixRepo interface {
SendCode(ctx context.Context, phone, code string) error
}