voucher/internal/biz/mixrepos/sms.go

8 lines
148 B
Go

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