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.