Skip to content
Snippets Groups Projects
Select Git revision
  • simon
  • master default protected
  • simon+
3 results

README.md

Blame
  • Forked from JEDI / base-intersemestre-jedi
    Source project has a limited visibility.
    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,
    	)
    }