summaryrefslogtreecommitdiffstats
path: root/lib/Narwhal/Page.pm
blob: d3e0a4d582db73cf8b6cc0ea76ab653987977014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package Narwhal::Page;
use Moose;

has text => (
    is  => 'ro',
    isa => 'Str',
);

__PACKAGE__->meta->make_immutable;
no Moose;

1;