From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use utf8;
all => {
query => 'Str',
count => { isa => 'Int', optional => 1 },
highlight => { isa => 'Bool', optional => 1 },
page => { isa => 'Int', optional => 1 },
sort => { isa => 'Str', optional => 1 },
sort_dir => { isa => 'Str', optional => 1 },
},
files => {
query => 'Str',
count => { isa => 'Int', optional => 1 },
highlight => { isa => 'Bool', optional => 1 },
page => { isa => 'Int', optional => 1 },
sort => { isa => 'Str', optional => 1 },
sort_dir => { isa => 'Str', optional => 1 },
},
messages => {
query => 'Str',
count => { isa => 'Int', optional => 1 },
highlight => { isa => 'Bool', optional => 1 },
page => { isa => 'Int', optional => 1 },
sort => { isa => 'Str', optional => 1 },
sort_dir => { isa => 'Str', optional => 1 },
},
);
1;