Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

main.yaml

Blame
  • main.go 1.57 KiB
    package main
    
    import (
    	"github.com/iotaledger/goshimmer/packages/node"
    	"github.com/iotaledger/goshimmer/plugins/analysis"
    	"github.com/iotaledger/goshimmer/plugins/autopeering"
    	"github.com/iotaledger/goshimmer/plugins/bundleprocessor"
    	"github.com/iotaledger/goshimmer/plugins/cli"
    	"github.com/iotaledger/goshimmer/plugins/dashboard"
    	"github.com/iotaledger/goshimmer/plugins/gossip"
    	gossip_on_solidification "github.com/iotaledger/goshimmer/plugins/gossip-on-solidification"
    	"github.com/iotaledger/goshimmer/plugins/gracefulshutdown"
    	"github.com/iotaledger/goshimmer/plugins/metrics"
    	"github.com/iotaledger/goshimmer/plugins/statusscreen"
    	statusscreen_tps "github.com/iotaledger/goshimmer/plugins/statusscreen-tps"
    	"github.com/iotaledger/goshimmer/plugins/tangle"
    	"github.com/iotaledger/goshimmer/plugins/tipselection"
    	"github.com/iotaledger/goshimmer/plugins/ui"
    	"github.com/iotaledger/goshimmer/plugins/webapi"
    	webapi_gtta "github.com/iotaledger/goshimmer/plugins/webapi-gtta"
    	webapi_spammer "github.com/iotaledger/goshimmer/plugins/webapi-spammer"
    	"github.com/iotaledger/goshimmer/plugins/webauth"
    	"github.com/iotaledger/goshimmer/plugins/zeromq"
    )
    
    func main() {
    	node.Run(
    		cli.PLUGIN,
    		autopeering.PLUGIN,
    		gossip.PLUGIN,
    		gossip_on_solidification.PLUGIN,
    		tangle.PLUGIN,
    		bundleprocessor.PLUGIN,
    		analysis.PLUGIN,
    		gracefulshutdown.PLUGIN,
    		tipselection.PLUGIN,
    		zeromq.PLUGIN,
    		dashboard.PLUGIN,
    		metrics.PLUGIN,
    
    		statusscreen.PLUGIN,
    		statusscreen_tps.PLUGIN,
    
    		webapi.PLUGIN,
    		webapi_gtta.PLUGIN,
    		webapi_spammer.PLUGIN,
    
    		ui.PLUGIN,
    		webauth.PLUGIN,
    	)
    }