diff lib/CPT/CLI.pm @ 1:8691c1c61a8e draft default tip

planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author cpt
date Mon, 05 Jun 2023 02:48:47 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lib/CPT/CLI.pm	Mon Jun 05 02:48:47 2023 +0000
@@ -0,0 +1,45 @@
+package CPT::CLI;
+use strict;
+use warnings;
+
+our $VERSION = '1.00';
+
+=head1 NAME
+
+CPT::CLI - a stub library to make Dist::Zilla happy
+
+=head1 SYNOPSIS
+
+	use CPT::CLI;
+
+=head1 FUNCTIONAL INTERFACE
+
+=head2 new
+
+	my $libCPT = CPT::CLI->new();
+
+=cut
+
+sub new {
+	my ( $class, %options ) = @_;
+	my $self = bless( {}, $class );
+	return $self;
+}
+
+1;
+__END__
+
+=head1 AUTHOR
+
+Eric Rasche, <lt>rasche.eric@yandex.ru<gt>
+
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 2013 by Eric Rasche
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.14.2 or,
+at your option, any later version of Perl 5 you may have available.
+
+
+=cut