annotate cpt_psm_comparison_table/lib/CPT/CLI.pm @ 0:b8b8b52904a5 draft

Uploaded
author cpt
date Tue, 05 Jul 2022 05:42:59 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
1 package CPT::CLI;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
2 use strict;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
3 use warnings;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
4
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
5 our $VERSION = '1.00';
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
6
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
7 =head1 NAME
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
8
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
9 CPT::CLI - a stub library to make Dist::Zilla happy
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
10
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
11 =head1 SYNOPSIS
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
12
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
13 use CPT::CLI;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
14
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
15 =head1 FUNCTIONAL INTERFACE
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
16
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
17 =head2 new
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
18
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
19 my $libCPT = CPT::CLI->new();
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
20
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
21 =cut
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
22
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
23 sub new {
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
24 my ( $class, %options ) = @_;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
25 my $self = bless( {}, $class );
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
26 return $self;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
27 }
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
28
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
29 1;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
30 __END__
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
31
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
32 =head1 AUTHOR
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
33
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
34 Eric Rasche, <lt>rasche.eric@yandex.ru<gt>
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
35
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
36 =head1 COPYRIGHT AND LICENSE
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
37
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
38 Copyright (C) 2013 by Eric Rasche
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
39
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
40 This library is free software; you can redistribute it and/or modify
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
41 it under the same terms as Perl itself, either Perl version 5.14.2 or,
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
42 at your option, any later version of Perl 5 you may have available.
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
43
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
44
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
45 =cut