The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Lorem::Constants;
{
  $Lorem::Constants::VERSION = '0.23.1';
}
use strict;
use warnings;

require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(%LoremStyleBorderWidth);

use Readonly;
Readonly::Hash our %LoremStyleBorderWidth => ( qw/thin 1 medium 2 thick 3/ );

1;