$WebService::Braintree::WebhookTesting::VERSION
=
'0.91'
;
use
Moose;
sub
sample_notification {
my
(
$class
,
$kind
,
$id
) =
@_
;
return
$class
->gateway->webhook_testing->sample_notification(
$kind
,
$id
);
}
sub
gateway {
return
WebService::Braintree->configuration->gateway;
}
__PACKAGE__->meta->make_immutable;
1;