Introducing a very barebones admin UI for managing buckets. I would
[catagits/App-IdiotBox.git] / lib / App / IdiotBox / Common.pm
1 package App::IdiotBox::Common;
2
3 use strict;
4 use warnings;
5
6 require Exporter;
7 *import = \&Exporter::import;
8
9 our @EXPORT_OK = qw(@SupportedFormats);
10
11 our @SupportedFormats = qw(flv m4v);
12
13 1;