diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-02-20 22:37:38 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-02-20 22:37:38 (GMT) |
commit | 2086980df7cd1c5038a78fe39deca5b9d6893bd0 (patch) | |
tree | 0ab16e018b535dab5c31ee1354271be68029ff4a /rhimport_tools.pm | |
parent | b7c4d4b12e1ea547ed6028e3920b34e8eb932236 (diff) |
added dropbox parameter
gui has now same capability as command line
git-svn-id: https://svn.helsinki.at/rhimport/trunk@10 7c65635b-ec39-4f67-a626-873dbafdd612
Diffstat (limited to 'rhimport_tools.pm')
-rw-r--r-- | rhimport_tools.pm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/rhimport_tools.pm b/rhimport_tools.pm new file mode 100644 index 0000000..eda2d79 --- /dev/null +++ b/rhimport_tools.pm @@ -0,0 +1,37 @@ +#!/usr/bin/perl -w +# +# +# rhdropbox +# +# Copyright (C) 2009 Christian Pointner <equinox@helsinki.at> +# +# This file is part of rhdropbox. +# +# rhdropbox is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# any later version. +# +# rhdropbox is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with rhdropbox. If not, see <http://www.gnu.org/licenses/>. +# + +use strict; + +package rhimport; + +sub start_import +{ + my ($m3u, $dropbox, $concat) = @_; + + print "Starting import from $m3u($concat) to $dropbox\n"; + + return 0; +} + +1; |