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

use strict;
use utf8;
add => {
channel => { isa => 'Str', optional => 1 },
file => { isa => 'Str', optional => 1 },
file_comment => { isa => 'Str', optional => 1 },
timestamp => { isa => 'Str', optional => 1 },
},
list => {
count => { isa => 'Int', optional => 1 },
page => { isa => 'Int', optional => 1 },
},
remove => {
channel => { isa => 'Str', optional => 1 },
file => { isa => 'Str', optional => 1 },
file_comment => { isa => 'Str', optional => 1 },
timestamp => { isa => 'Str', optional => 1 },
},
);
1;