summary refs log tree commit diff
path: root/lib/Net/Riak/Search.pm
blob: ac9f059ee6a34d793dcfa44486682e4404a7997e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Net::Riak::Search;

# ABSTRACT: the riaklink object represents a link from one Riak object to another

use Moose;

with 'Net::Riak::Role::Base' => {classes =>
      [{name => 'client', required => 0},]};

sub search {
    my ($self, $params) = @_;
    $self->client->search($params);
};

1;