File: Reader.pm

package info (click to toggle)
libmaxmind-db-reader-xs-perl 1.000007-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,784 kB
  • sloc: perl: 3,202; ansic: 260; makefile: 3; sh: 2
file content (15 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Test::MaxMind::DB::Reader;

use strict;
use warnings;

use MaxMind::DB::Reader::XS;

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

## use critic

require MaxMind::DB::Reader;

1;