Skip to content
Snippets Groups Projects
Select Git revision
  • 5673ae79cb1d05e7ad633e31e058cbdcee43aeed
  • 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
  • main.go 486 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/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,
    	)
    }