PM/Password.pm

21 lines
202 B
Perl
Raw Normal View History

2014-04-27 03:46:32 +04:00
package Password;
use strict;
use warnings;
use utf8;
2014-04-27 23:11:52 +04:00
use Database;
2014-04-27 03:46:32 +04:00
sub new {
my $class = shift;
my $self = {
_home => $home,
};
bless $self, $class;
return $self;
}
2014-04-27 23:11:52 +04:00
1;