Skip to content
Snippets Groups Projects
Select Git revision
  • 8b3d0c77cf1291672935eade431dabad6a4e9532
  • develop default protected
  • congestioncontrol
  • merge-v-data-collection-spammer-0.8.2
  • WIP-merge-v-data-collection-spammer-0.8.2
  • merge-v-data-collection-spammer-0.7.7
  • tmp
  • test-masterpow-fixing
  • test-masterpow
  • test-echo
  • v-data-collection
  • v-data-collection-spammer
  • tmp-dump-spam-info
  • dump-msg-info-0.3.1
  • test-dump-message-info
  • spammer-exprandom
  • extra/tutorial
  • without_tipselection
  • hacking-docker-network
  • hacking-docker-network-0.2.3
  • master
  • v0.2.3
22 results

go.sum

Blame
  • This project manages its dependencies using Go Modules. Learn more
    main.go 1.15 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/cli"
    	"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/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/webapi"
    	webapi_gtta "github.com/iotaledger/goshimmer/plugins/webapi-gtta"
    	webapi_spammer "github.com/iotaledger/goshimmer/plugins/webapi-spammer"
    )
    
    func main() {
    	node.Run(
    		cli.PLUGIN,
    		autopeering.PLUGIN,
    		gossip.PLUGIN,
    		gossip_on_solidification.PLUGIN,
    		tangle.PLUGIN,
    		analysis.PLUGIN,
    		gracefulshutdown.PLUGIN,
    		tipselection.PLUGIN,
    
    		statusscreen.PLUGIN,
    		statusscreen_tps.PLUGIN,
    
    		webapi.PLUGIN,
    		webapi_gtta.PLUGIN,
    		webapi_spammer.PLUGIN,
    	)
    }