Skip to content
Snippets Groups Projects
plugins.go 670 B
Newer Older
package webapi

import (
	"github.com/iotaledger/goshimmer/plugins/webapi"
	"github.com/iotaledger/goshimmer/plugins/webapi/autopeering"
	"github.com/iotaledger/goshimmer/plugins/webapi/data"
	"github.com/iotaledger/goshimmer/plugins/webapi/drng"
capossele's avatar
capossele committed
	"github.com/iotaledger/goshimmer/plugins/webapi/info"
	"github.com/iotaledger/goshimmer/plugins/webapi/message"
	"github.com/iotaledger/goshimmer/plugins/webapi/spammer"
	"github.com/iotaledger/goshimmer/plugins/webauth"
	"github.com/iotaledger/hive.go/node"
)

var PLUGINS = node.Plugins(
	webapi.PLUGIN,
	webauth.PLUGIN,
	spammer.PLUGIN,
	data.PLUGIN,
	drng.PLUGIN,
	message.PLUGIN,
	autopeering.PLUGIN,
capossele's avatar
capossele committed
	info.Plugin,