The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package App::PAIA::Command::patron;
use strict;
use v5.10;
use parent 'App::PAIA::Command';

our $VERSION = '0.30';

sub _execute {
    my ($self, $opt, $args) = @_;

    $self->core_request( 'GET', 'patron' );
}

1;
__END__

=head1 NAME

App::PAIA::Command::patron - get general patron information

=cut