foo
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Defined.pm
1 package Moose::Autobox::Defined;
2 use Moose::Role 'with';
3
4 our $VERSION = '0.01';
5
6 with 'Moose::Autobox::Item';
7             
8 sub defined { 1 }
9
10 1;