The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

KiokuDB::Cmd::Base - Base class for writing KiokuDB command line tools.

SYNOPSIS

package KiokuDB::Cmd::Command::Blort;
use Moose;

extends qw(KiokuDB::Cmd::Base);

augment run => sub {
    ...
};

DESCRIPTION

This class provides shared functionality for KiokuDB command line tools.

See KiokuDB::Cmd::Command::Dump for a real example.