File: Reader.pm

package info (click to toggle)
libmaxmind-db-reader-perl 1.000014-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,040 kB
  • sloc: perl: 1,668; makefile: 10
file content (16 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package    # hide from PAUSE
    Test::MaxMind::DB::Reader;

use strict;
use warnings;

BEGIN {
    ## no critic (Variables::RequireLocalizedPunctuationVars)
    $ENV{MAXMIND_DB_READER_IMPLEMENTATION} = 'PP';
}

use MaxMind::DB::Reader::PP;

require MaxMind::DB::Reader;

1;