Skip to content
Snippets Groups Projects
plugins.go 228 B
Newer Older
package ui

import (
	"github.com/iotaledger/goshimmer/plugins/graph"
	"github.com/iotaledger/goshimmer/plugins/dashboard"
	"github.com/iotaledger/hive.go/node"
)

var PLUGINS = node.Plugins(
	dashboard.PLUGIN,
	graph.PLUGIN,
)