#! /usr/bin/perl
# PODNAME: tapper-testplan-generator
# ABSTRACT: cmdline frontend to Tapper::Testplan::Generator

use strict;
use warnings;
use 5.010;

use Tapper::Testplan::Generator;
my $generator = Tapper::Testplan::Generator->new();
$generator->run;

__END__
=pod

=encoding utf-8

=head1 NAME

tapper-testplan-generator - cmdline frontend to Tapper::Testplan::Generator

=head1 AUTHOR

AMD OSRC Tapper Team <tapper@amd64.org>

=head1 COPYRIGHT AND LICENSE

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

This is free software, licensed under:

  The (two-clause) FreeBSD License

=cut

