Remove Beego tasks, make Importer available through DI

This commit is contained in:
Deluan
2020-01-08 09:39:58 -05:00
committed by Deluan Quintão
parent 79701caca3
commit 3af9972b41
8 changed files with 150 additions and 97 deletions
+9
View File
@@ -0,0 +1,9 @@
package scanner
import "github.com/google/wire"
var Set = wire.NewSet(
NewImporter,
NewItunesScanner,
wire.Bind(new(Scanner), new(*ItunesScanner)),
)