The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#! /usr/bin/perl
# PODNAME: tapper
# ABSTRACT: Tapper - primary cmdline frontend - the future Platzhirsch

use App::Rad;
use Tapper::CLI::Notification;
use Tapper::CLI::Testplan;
use Tapper::CLI::Schema;
use Tapper::CLI::User;
use Tapper::CLI::Host;
use Tapper::CLI::Cobbler;
use Tapper::CLI::Init;

use strict;
use warnings;
use 5.010;

sub setup
{
        my ($c) = @_;
        Tapper::CLI::Notification::setup($c);
        Tapper::CLI::Schema::setup($c);
        Tapper::CLI::Testplan::setup($c);
        Tapper::CLI::User::setup($c);
        Tapper::CLI::Host::setup($c);
        Tapper::CLI::Cobbler::setup($c);
        Tapper::CLI::Init::setup($c);
}

App::Rad->run();

__END__

=pod

=encoding UTF-8

=head1 NAME

tapper - Tapper - primary cmdline frontend - the future Platzhirsch

=head1 AUTHOR

AMD OSRC Tapper Team <tapper@amd64.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2015 by Advanced Micro Devices, Inc..

This is free software, licensed under:

  The (two-clause) FreeBSD License

=cut