MetaStore::Auth::Group - abstract class for group of users


MetaStore documentation Contained in the MetaStore distribution.

Index


Code Index:

NAME

Top

MetaStore::Auth::Group - abstract class for group of users

SYNOPSIS

Top

DESCRIPTION

Top

MetaStore::Auth::Group

METHODS

Top

AUTHOR

Top

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__