Adds a skeleton for an AlbumCsvReader

This commit is contained in:
2016-01-16 19:18:59 +01:00
parent 150ce1e76e
commit ab201424ad
3 changed files with 234 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ import (
"time"
)
// Execute executes the job
func Execute() error {
if len(os.Args) != 2 {
return fmt.Errorf("Missing mandatory .csv parameter")
@@ -84,7 +85,6 @@ func Execute() error {
time.Sleep(waitUntil.Sub(time.Now()))
}
return nil
}
func main() {