blob: e856cb59b5344e6abb9a4b6617c18c0194ca8bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use strict;
use warnings FATAL => qw(all);
use File::Spec ();
use lib (); # empty so we can calculate the lib to use
my @libs = (File::Spec->catfile('@ServerRoot@', 'response'),
File::Spec->catfile('@ServerRoot@', qw(.. lib)));
lib->import(@libs);
1;
|