comparison cpt_psm_prep/lib/CPT/CLI.pm @ 0:e4de0a0e90c8 draft

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