diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-02-22 22:27:52 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-02-22 22:27:52 (GMT) |
commit | cd12fd737768df244344bfa198838b2feff10377 (patch) | |
tree | 79eb6d52cdcab1e45a96a52d9c5393869bcc5f4f /rhimport.pm | |
parent | 88f86102d9bf801c410a7043937891edaabc1f6d (diff) |
changed to pool/nopool setup
no concat anymore
git-svn-id: https://svn.helsinki.at/rhimport/trunk@19 7c65635b-ec39-4f67-a626-873dbafdd612
Diffstat (limited to 'rhimport.pm')
-rw-r--r-- | rhimport.pm | 17 |
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; } |