The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package t::Plugin::Print;
use strict;
use warnings;
use base qw/Archer::Plugin/;
use FindBin ();

sub run {
    my ( $self, $context, $args ) = @_;
    printf "%s:%s\n", $self->{server}, $self->{config}->{command};
}

1;