Search::GIN::Query - use Moose::Role;


Search-GIN documentation Contained in the Search-GIN distribution.

Index


Code Index:

NAME

Top

Search::GIN::Query - use Moose::Role;

VERSION

Top

version 0.08

SYNOPSIS

Top

    use Search::GIN::Query;

DESCRIPTION

Top

AUTHOR

Top

Yuval Kogman <nothingmuch@cpan.org>

COPYRIGHT AND LICENSE

Top


Search-GIN documentation Contained in the Search-GIN distribution.

use strict;
use warnings;
package Search::GIN::Query;
BEGIN {
  $Search::GIN::Query::VERSION = '0.08';
}
# ABSTRACT:

use Moose::Role;
use namespace::clean -except => [qw(meta)];

requires qw(
    consistent
    extract_values
);

1;




__END__