The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::BCSSH::Client - Handler client role

SYNOPSIS

    package App::BCSSH::Command::mycommand;
    use Moo;
    with 'App::BCSSH::Client';

    sub run {
        ...;
        $self->command({ arg => 1});
    }