The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package GeoIP2::Role::HasLanguages;
{
  $GeoIP2::Role::HasLanguages::VERSION = '0.0200';
}

use strict;
use warnings;

use GeoIP2::Types qw( LanguagesArrayRef );
use Sub::Quote qw( quote_sub );

use Moo::Role;

has languages => (
    is      => 'ro',
    isa     => LanguagesArrayRef,
    default => quote_sub(q{ ['en'] }),
);

1;