
KiokuDB::Cmd::WithDSN::Create - Write or create access to a DSN for command line tools

package KiokuDB::Cmd::Command::Blort;
use Moose;
extends qw(KiokuDB::Cmd::Base);
with qw(KiokuDB::Cmd::WithDSN::Create);
augment run => sub {
my $self = shift;
$self->backend;
};

Command line attr for the DSN to connect to.
A boolean determining whether the create flag is passed to connect. Defaults to true but can be disabled (--nocreate).
Command line attr determining whether or not clear will be called on the backend. Defaults to false.
Non command line attr, contains the composed backend.