]> git.donarmstrong.com Git - lib.git/blob - templates/perl_module_header.pm
update copyright in perl script
[lib.git] / templates / perl_module_header.pm
1 # This module is part of , and
2 # is released under the terms of the GPL version 3, or any later
3 # version (at your option). See the file README and COPYING for more
4 # information.
5 # Copyright 2015 by Don Armstrong <don@donarmstrong.com>.
6
7 package THEPACKAGE;
8
9 =head1 NAME
10
11 THEPACKGE --
12
13 =head1 SYNOPSIS
14
15
16 =head1 DESCRIPTION
17
18
19 =head1 BUGS
20
21 None known.
22
23 =cut
24
25 use warnings;
26 use strict;
27 use vars qw($VERSION $DEBUG %EXPORT_TAGS @EXPORT_OK @EXPORT);
28 use base qw(Exporter);
29
30 BEGIN{
31      $VERSION = '0.1';
32      $DEBUG = 0 unless defined $DEBUG;
33
34      @EXPORT = ();
35      %EXPORT_TAGS = (#a    => [qw()],
36                     );
37      @EXPORT_OK = ();
38      Exporter::export_ok_tags(keys %EXPORT_TAGS);
39      $EXPORT_TAGS{all} = [@EXPORT_OK];
40
41 }
42
43
44
45 1;
46
47
48 __END__
49
50
51
52
53
54