
KiokuDB::Cmd::WithDSN::Read - Readonly access to a DSN

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

This role provides readonly access to a database.
