summaryrefslogtreecommitdiffstats
path: root/external/perl/transfer/Text/Template.pm
blob: 13ed1eb1f712b90256d330ea9568389a20b9bdf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /usr/bin/perl

# Quick transfer to the downloaded Text::Template

BEGIN {
    use File::Spec::Functions;
    use File::Basename;
    use lib catdir(dirname(__FILE__), "..", "..");
    my $texttemplate = catfile("Text-Template-1.46", "lib", "Text", "Template.pm");
    require $texttemplate;
}
1;