From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/env perl
use strict;
use 5.010;
use FindBin '$Bin';
use lib "$Bin/../../lib";
my $appspec_file = "$Bin/../githubcl-appspec.yaml";
my $spec = API::CLI::App::Spec->read($appspec_file);
my $runner = App::Spec::Run->new(
spec => $spec,
cmd => API::CLI->new(
dir => "$ENV{HOME}/.githubcl",
),
);
$runner->run;