]> git.imager.perl.org - bse.git/blame - site/cgi-bin/modules/BSE/Storage/LocalFiles.pm
add version numbers to all modules
[bse.git] / site / cgi-bin / modules / BSE / Storage / LocalFiles.pm
CommitLineData
e63c3728
TC
1package BSE::Storage::LocalFiles;
2use strict;
3use BSE::Storage::LocalBase;
4our @ISA = qw(BSE::Storage::LocalBase);
5
cb7fd78d
TC
6our $VERSION = "1.000";
7
e63c3728
TC
8sub store {
9 my ($self, $path, $basename) = @_;
10 # nothing to do
11
12 return '';
13}
14
15sub url {
16 my ($self, $basename, $object) = @_;
17
18 return '';
19}
20
211;