Select Git revision
This project manages its dependencies using Go Modules.
Learn more
plugins.go 482 B
package research
import (
analysisclient "github.com/iotaledger/goshimmer/plugins/analysis/client"
analysisserver "github.com/iotaledger/goshimmer/plugins/analysis/server"
analysiswebinterface "github.com/iotaledger/goshimmer/plugins/analysis/webinterface"
"github.com/iotaledger/goshimmer/plugins/remotelog"
"github.com/iotaledger/hive.go/node"
)
var PLUGINS = node.Plugins(
remotelog.Plugin,
analysisserver.Plugin,
analysisclient.Plugin,
analysiswebinterface.Plugin,
)