misc crap
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Meta / NoGetopt.pm
CommitLineData
a01f08fb 1
2package MooseX::Getopt::Meta::NoGetopt;
3use Moose;
4use Moose::Util::TypeConstraints;
5
6our $VERSION = '0.01';
7our $AUTHORITY = 'cpan:STEVAN';
8
9extends 'Moose::Meta::Attribute'; # << Moose extending Moose :)
10
11no Moose;
12
13# register this as a metaclass alias ...
14package Moose::Meta::Attribute::Custom::NoGetopt;
15sub register_implementation { 'MooseX::Getopt::Meta::NoGetopt' }
16
171;