From 3a3e5c6c1f767eb15bff0af530e4f5ab4fb0c2dc Mon Sep 17 00:00:00 2001 From: dewey Date: Fri, 12 Jul 2019 23:04:56 +0200 Subject: [PATCH] Enable all plugins --- cmd/api/main.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cmd/api/main.go b/cmd/api/main.go index a4da5d9..403dc44 100644 --- a/cmd/api/main.go +++ b/cmd/api/main.go @@ -18,6 +18,8 @@ import ( "github.com/dewey/feedbridge/config" "github.com/dewey/feedbridge/plugin" "github.com/dewey/feedbridge/plugins/racefansnet" + "github.com/dewey/feedbridge/plugins/roadsandkingdoms" + "github.com/dewey/feedbridge/plugins/scmp" "github.com/dewey/feedbridge/runner" "github.com/dewey/feedbridge/store" @@ -54,8 +56,8 @@ func main() { } pluginRepo := plugin.NewMemRepo() - // pluginRepo.Install(scmp.NewPlugin(l, c)) - // pluginRepo.Install(roadsandkingdoms.NewPlugin(l, c)) + pluginRepo.Install(scmp.NewPlugin(l, c)) + pluginRepo.Install(roadsandkingdoms.NewPlugin(l, c)) pluginRepo.Install(racefansnet.NewPlugin(l, c)) storageRepo, err := store.NewStoreBackend(cfg)