Skip to content
Snippets Groups Projects
Select Git revision
  • 0ac0ba45a143b8a8ccbbce1f0eb77b0a703939e5
  • 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

plugin.go

Blame
  • user avatar
    capossele authored
    0ac0ba45
    History
    plugin.go 955 B
    package instances
    
    import (
    	"github.com/iotaledger/goshimmer/packages/node"
    	"github.com/iotaledger/goshimmer/plugins/autopeering/instances/acceptedneighbors"
    	"github.com/iotaledger/goshimmer/plugins/autopeering/instances/chosenneighbors"
    	"github.com/iotaledger/goshimmer/plugins/autopeering/instances/entrynodes"
    	"github.com/iotaledger/goshimmer/plugins/autopeering/instances/knownpeers"
    	"github.com/iotaledger/goshimmer/plugins/autopeering/instances/neighborhood"
    	"github.com/iotaledger/goshimmer/plugins/autopeering/instances/outgoingrequest"
    	"github.com/iotaledger/goshimmer/plugins/autopeering/instances/ownpeer"
    )
    
    func Configure(plugin *node.Plugin) {
    	ownpeer.Configure(plugin)
    	entrynodes.Configure(plugin)
    	knownpeers.Configure(plugin)
    	neighborhood.Configure(plugin)
    	outgoingrequest.Configure(plugin)
    	chosenneighbors.Configure(plugin)
    	acceptedneighbors.Configure(plugin)
    }
    
    func Run(plugin *node.Plugin) {
    	neighborhood.Run(plugin)
    }