Don't import files if they don't have the supportted format extension,
[catagits/App-IdiotBox.git] / lib / App / IdiotBox / Common.pm
CommitLineData
625f105e 1package App::IdiotBox::Common;
2
3use strict;
4use warnings;
5
6require Exporter;
7*import = \&Exporter::import;
8
9our @EXPORT_OK = qw(@SupportedFormats);
10
11our @SupportedFormats = qw(flv m4v);
12
131;