Koha/C4/Labels.pm
Dobrica Pavlinusic 130e3d9c10 Bug 8315 - remove use C4::* version
This patch touches a lot of code, but basically it removes version
information from use C4::* in our code.

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
All script still compiles after the patch (confirmed by pre-applypatch hook)
2012-07-13 14:17:20 +02:00

13 lines
228 B
Perl

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