#!/usr/bin/env perl
# PODNAME: karr
# ABSTRACT: Kanban Assignment & Responsibility Registry

use strict;
use warnings;
use App::karr;

if (@ARGV) {
    $ARGV[0] = 'setrefs' if $ARGV[0] eq 'set-refs';
    $ARGV[0] = 'getrefs' if $ARGV[0] eq 'get-refs';
}

App::karr->new_with_cmd;

__END__

=pod

=encoding UTF-8

=head1 NAME

karr - Kanban Assignment & Responsibility Registry

=head1 VERSION

version 0.100

=head1 SUPPORT

=head2 Issues

Please report bugs and feature requests on GitHub at
L<https://github.com/Getty/p5-app-karr/issues>.

=head2 IRC

Join C<#ai> on C<irc.perl.org> or message Getty directly.

=head1 CONTRIBUTING

Contributions are welcome! Please fork the repository and submit a pull request.

=head1 AUTHOR

Torsten Raudssus <torsten@raudssus.de>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2026 by Torsten Raudssus <torsten@raudssus.de> L<https://raudssus.de/>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
