Koha/C4/Labels.pm
Chris Nighswonger 84d5b28f12 Bringing label, patroncard, and creator modules into conformity with the rest of C4 style.
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-02-08 20:54:34 -05:00

13 lines
269 B
Perl

package C4::Labels;
BEGIN {
use version; our $VERSION = qv('1.0.0_1');
use C4::Labels::Batch 1.000000;
use C4::Labels::Label 1.000000;
use C4::Labels::Layout 1.000000;
use C4::Labels::Profile 1.000000;
use C4::Labels::Template 1.000000;
}
1;