summaryrefslogtreecommitdiff
path: root/rhimport.pm
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2010-02-22 22:27:52 (GMT)
committerChristian Pointner <equinox@helsinki.at>2010-02-22 22:27:52 (GMT)
commit0784f649410c1483886c0e4a0d805720fc408da9 (patch)
tree79eb6d52cdcab1e45a96a52d9c5393869bcc5f4f /rhimport.pm
parent421f1f634ef69307c646cb60d1692a5e96f0fe43 (diff)
changed to pool/nopool setup
no concat anymore
Diffstat (limited to 'rhimport.pm')
-rw-r--r--rhimport.pm17
1 files changed, 14 insertions, 3 deletions
diff --git a/rhimport.pm b/rhimport.pm
index 064a8ad..512652b 100644
--- a/rhimport.pm
+++ b/rhimport.pm
@@ -25,11 +25,22 @@ use strict;
package rhimport;
-sub start_import
+sub import_playlist
{
- my ($m3u, $dropbox, $concat) = @_;
+ my ($playlist, $dropbox) = @_;
+
+ print "Starting import from playlist $playlist to $dropbox\n";
+
+
+ return 0;
+}
+
+sub import_file
+{
+ my ($file, $dropbox) = @_;
+
+ print "Starting import from $file to $dropbox\n";
- print "Starting import from $m3u($concat) to $dropbox\n";
return 0;
}