Don't import files if they don't have the supportted format extension,
[catagits/App-IdiotBox.git] / lib / App / IdiotBox / Common.pm
diff --git a/lib/App/IdiotBox/Common.pm b/lib/App/IdiotBox/Common.pm
new file mode 100644 (file)
index 0000000..34bf001
--- /dev/null
@@ -0,0 +1,13 @@
+package App::IdiotBox::Common;
+
+use strict;
+use warnings;
+
+require Exporter;
+*import = \&Exporter::import;
+
+our @EXPORT_OK = qw(@SupportedFormats);
+
+our @SupportedFormats = qw(flv m4v);
+
+1;