Skip to content
Snippets Groups Projects
Select Git revision
  • 11162ca83c976ff1f4d9e76f3e946045ced4fb25
  • 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
  • user avatar
    capossele authored
    48a38769
    History
    plugins.go 536 B
    package research
    
    import (
    	"github.com/iotaledger/goshimmer/dapps/fpctest"
    	analysisclient "github.com/iotaledger/goshimmer/plugins/analysis/client"
    	analysisdashboard "github.com/iotaledger/goshimmer/plugins/analysis/dashboard"
    	analysisserver "github.com/iotaledger/goshimmer/plugins/analysis/server"
    	"github.com/iotaledger/goshimmer/plugins/remotelog"
    	"github.com/iotaledger/hive.go/node"
    )
    
    var PLUGINS = node.Plugins(
    	remotelog.Plugin,
    	analysisserver.Plugin,
    	analysisclient.Plugin,
    	fpctest.App,
    	analysisdashboard.Plugin,
    )