| MetaStore documentation | Contained in the MetaStore distribution. |
MetaStore::Auth::Group - abstract class for group of users
MetaStore::Auth::Group
Aliaksandr P. Zahatski, <zahatski@gmail.com>
| MetaStore documentation | Contained in the MetaStore distribution. |
package MetaStore::Auth::Group; use strict; use warnings; use MetaStore::Item; use Data::Dumper; our @ISA = qw(MetaStore::Item); our $VERSION = '0.01';
sub _init { my $self = shift; return $self->SUPER::_init(@_); } 1; __END__