annotate cpt_psm_comparison_table/lib/CPT.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;
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 use Moose;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
5
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
6 # ABSTRACT: main library wrapping most actions needed by CPT's portal scripts.
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
7
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
8 no Moose;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
9 1;
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
10
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
11 __END__
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
12
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
13 =pod
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
14
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
15 =encoding UTF-8
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
16
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
17 =head1 NAME
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
18
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
19 CPT - main library wrapping most actions needed by CPT's portal scripts.
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
20
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
21 =head1 VERSION
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
22
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
23 version 1.99.4
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
24
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
25 =head1 AUTHOR
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
26
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
27 Eric Rasche <rasche.eric@yandex.ru>
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
28
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
29 =head1 COPYRIGHT AND LICENSE
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
30
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
31 This software is Copyright (c) 2014 by Eric Rasche.
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
32
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
33 This is free software, licensed under:
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
34
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
35 The GNU General Public License, Version 3, June 2007
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
36
b8b8b52904a5 Uploaded
cpt
parents:
diff changeset
37 =cut