3f8964e6fa89438870ca77bf3a97f46ce2c696c9
[id3fs.git] / lib / ID3FS / File / Mp3.pm
1 package ID3FS::File::Mp3;
2
3 use strict;
4 use warnings;
5
6 sub new
7 {
8     my $proto=shift;
9     my $class=ref($proto) || $proto;
10     my $self={};
11     bless($self,$class);
12
13     $self->{path}=shift;
14     return $self;
15 }
16
17 1;
18