The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
package Search::GIN::Query;

our $VERSION = '0.11';

use Moose::Role;
use namespace::autoclean;

requires qw(
    consistent
    extract_values
);

1;