Mercurial > repos > cpt > cpt_psm_recombine
comparison lib/CPT/CLI.pm @ 1:97ef96676b48 draft
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author | cpt |
---|---|
date | Mon, 05 Jun 2023 02:51:26 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:b18e8268bf4e | 1:97ef96676b48 |
---|---|
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 |