NewSkool::Constants Review

package NewSkool::Constants;

use strict;
use warnings;
use base 'Badger::Exporter';
use constant {
    MESSAGE => 'Hello World!',
    VOLUME  => 11,
    TRUE    => 1,
    FALSE   => 0,
};

our $VERSION = 2.718;
__PACKAGE__->exports(
    all   => 'MESSAGE',
    any   => 'VOLUME',
    tags  => { truth => 'TRUE FALSE' },
    hooks => {
        mushroom => sub { ... },
        snake    => sub { ... },
    },
    fail  => sub { ... },
);
Thus Spake Andy:

To recap, this is what our constants module was looking like...