Skip to content
Snippets Groups Projects
Select Git revision
  • 505c75ca34c13aae0ea6a88f3ff0ec08e41adada
  • without_tipselection default
  • develop protected
  • fix/grafana-local-dashboard
  • wasp
  • fix/dashboard-explorer-freeze
  • master
  • feat/timerqueue
  • test/sync_debug_and_650
  • feat/sync_revamp_inv
  • wip/sync
  • tool/db-recovery
  • portcheck/fix
  • fix/synchronization
  • feat/new-dashboard-analysis
  • feat/refactored-analysis-dashboard
  • feat/new-analysis-dashboard
  • test/demo-prometheus-fpc
  • prometheus_metrics
  • wip/analysis-server
  • merge/fpc-test-value-transfer
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
28 results

main.go

Blame
  • user avatar
    Evan Feenstra authored
    089a5dc4
    History
    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,
    	)
    }