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

has id => (
    is       => 'ro',
    isa      => 'Str',
    required => 1,
);

__PACKAGE__->meta->make_immutable;
no Moose;

1;