Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
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.