Skip to content
Snippets Groups Projects
Select Git revision
  • 6a408ad7fe901ec04c9aa092922eca15de7c9d86
  • 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 535 B
    package main
    
    import (
    	"net/http"
    	_ "net/http/pprof"
    
    	"github.com/iotaledger/goshimmer/pluginmgr/core"
    	"github.com/iotaledger/goshimmer/pluginmgr/research"
    	"github.com/iotaledger/goshimmer/pluginmgr/ui"
    	"github.com/iotaledger/goshimmer/pluginmgr/webapi"
    	"github.com/iotaledger/goshimmer/plugins/config"
    	"github.com/iotaledger/hive.go/node"
    )
    
    func main() {
    	go http.ListenAndServe("localhost:6061", nil) // pprof Server for Debbuging Mutexes
    
    	node.Run(
    		core.PLUGINS,
    		research.PLUGINS,
    		ui.PLUGINS,
    		webapi.PLUGINS,
    	)
    }