forked from iotaledger/goshimmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore.go
52 lines (49 loc) · 1.61 KB
/
core.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package plugins
import (
"github.com/iotaledger/hive.go/node"
"github.com/iotaledger/goshimmer/plugins/autopeering"
"github.com/iotaledger/goshimmer/plugins/banner"
"github.com/iotaledger/goshimmer/plugins/cli"
"github.com/iotaledger/goshimmer/plugins/clock"
"github.com/iotaledger/goshimmer/plugins/config"
"github.com/iotaledger/goshimmer/plugins/database"
"github.com/iotaledger/goshimmer/plugins/drng"
"github.com/iotaledger/goshimmer/plugins/faucet"
"github.com/iotaledger/goshimmer/plugins/gossip"
"github.com/iotaledger/goshimmer/plugins/gracefulshutdown"
"github.com/iotaledger/goshimmer/plugins/logger"
"github.com/iotaledger/goshimmer/plugins/mana"
"github.com/iotaledger/goshimmer/plugins/manaeventlogger"
"github.com/iotaledger/goshimmer/plugins/messagelayer"
"github.com/iotaledger/goshimmer/plugins/metrics"
"github.com/iotaledger/goshimmer/plugins/portcheck"
"github.com/iotaledger/goshimmer/plugins/pow"
"github.com/iotaledger/goshimmer/plugins/profiling"
"github.com/iotaledger/goshimmer/plugins/spammer"
"github.com/iotaledger/goshimmer/plugins/syncbeacon"
)
// Core contains the core plugins of a GoShimmer node.
var Core = node.Plugins(
banner.Plugin(),
config.Plugin(),
logger.Plugin(),
cli.Plugin(),
gracefulshutdown.Plugin(),
portcheck.Plugin(),
profiling.Plugin(),
database.Plugin(),
autopeering.Plugin(),
pow.Plugin(),
clock.Plugin(),
messagelayer.Plugin(),
gossip.Plugin(),
syncbeacon.Plugin(),
messagelayer.SyncBeaconFollowerPlugin(),
drng.Plugin(),
faucet.Plugin(),
messagelayer.ConsensusPlugin(),
metrics.Plugin(),
spammer.Plugin(),
mana.Plugin(),
manaeventlogger.Plugin(),
)