File Coverage

File:blib/lib/Geo/Coder/Free/DB/MaxMind/cities.pm
Coverage:80.0%

linestmtbrancondsubpodtimecode
1package Geo::Coder::Free::DB::MaxMind::cities;
2
3
9
9
9
53209
15
89
use strict;
4
9
9
9
14
8
216
use warnings;
5
6 - 14
=head1 NAME

Geo::Coder::Free::DB::MaxMind::cities - driver for https://www.maxmind.com/en/free-world-cities-database

=head1 VERSION

Version 0.41

=cut
15
16our $VERSION = '0.41';
17
18
9
9
9
195
63731
21
use Database::Abstraction;
19
20our @ISA = ('Database::Abstraction');
21
22sub _open {
23
0
        my $self = shift;
24
25
0
        return $self->SUPER::_open(sep_char => ',');
26}
27
281;