summaryrefslogtreecommitdiffstats
path: root/lib/Bread/Board/Declare/Literal.pm
blob: a8574d2214583738e602688be25df037dcc29929 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package Bread::Board::Declare::Literal;
use Moose;
# ABSTRACT: subclass of Bread::Board::Literal for Bread::Board::Declare

=head1 DESCRIPTION

This is a custom subclass of L<Bread::Board::Literal> which does the
L<Bread::Board::Declare::Role::Service> role. See those two modules for more
details.

=cut

extends 'Bread::Board::Literal';
with 'Bread::Board::Declare::Role::Service';

__PACKAGE__->meta->make_immutable;
no Moose;

1;