voucher/internal/biz/mixrepos/sms.go

8 lines
169 B
Go

package mixrepos
import "context"
type SmsMixRepo interface {
Send(ctx context.Context, phoneNumbers []string, templateCode string, params map[string]string) error
}