Skip to content
Snippets Groups Projects
Select Git revision
  • 418f71405012743cbe9ac6327b98474778359815
  • master default protected
  • v0.2.1
  • v0.2.0
4 results

multilayer_nmf.py

Blame
  • 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,
    )