Skip to content

Commit

Permalink
Enable all plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
dewey committed Jul 12, 2019
1 parent 17c6a54 commit 3a3e5c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cmd/api/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 3a3e5c6

Please sign in to comment.