mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-06 22:49:40 +00:00
13 lines
299 B
Perl
13 lines
299 B
Perl
|
#! /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;
|