use
strict;
use
warnings;
use
Moose;
use
namespace::autoclean;
has
username
=> (
is
=>
'ro'
,
isa
=> Str,
);
sub
BUILD {
my
$self
=
shift
;
}
1;
use
strict;
use
warnings;
use
Moose;
use
namespace::autoclean;
has
username
=> (
is
=>
'ro'
,
isa
=> Str,
);
sub
BUILD {
my
$self
=
shift
;
}
1;