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

plugins.go

Blame
  • plugins.go 1.25 KiB
    package core
    
    import (
    	"github.com/iotaledger/goshimmer/dapps/valuetransfers"
    	"github.com/iotaledger/goshimmer/plugins/autopeering"
    	"github.com/iotaledger/goshimmer/plugins/banner"
    	"github.com/iotaledger/goshimmer/plugins/bootstrap"
    	"github.com/iotaledger/goshimmer/plugins/cli"
    	"github.com/iotaledger/goshimmer/plugins/config"
    	"github.com/iotaledger/goshimmer/plugins/database"
    	"github.com/iotaledger/goshimmer/plugins/drng"
    	"github.com/iotaledger/goshimmer/plugins/gossip"
    	"github.com/iotaledger/goshimmer/plugins/gracefulshutdown"
    	"github.com/iotaledger/goshimmer/plugins/issuer"
    	"github.com/iotaledger/goshimmer/plugins/logger"
    	"github.com/iotaledger/goshimmer/plugins/messagelayer"
    	"github.com/iotaledger/goshimmer/plugins/metrics"
    	"github.com/iotaledger/goshimmer/plugins/portcheck"
    	"github.com/iotaledger/goshimmer/plugins/profiling"
    	"github.com/iotaledger/goshimmer/plugins/sync"
    
    	"github.com/iotaledger/hive.go/node"
    )
    
    var PLUGINS = node.Plugins(
    	banner.Plugin,
    	config.Plugin,
    	logger.Plugin,
    	cli.Plugin,
    	portcheck.Plugin,
    	profiling.Plugin,
    	database.Plugin,
    	autopeering.Plugin,
    	messagelayer.Plugin,
    	gossip.Plugin,
    	issuer.Plugin,
    	bootstrap.Plugin,
    	sync.Plugin,
    	gracefulshutdown.Plugin,
    	metrics.Plugin,
    	drng.Plugin,
    	valuetransfers.App,
    )