forked from iotaledger/goshimmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebapi.go
34 lines (31 loc) · 1.04 KB
/
webapi.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
package plugins
import (
"github.com/iotaledger/hive.go/node"
"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"
"github.com/iotaledger/goshimmer/plugins/webapi/faucet"
"github.com/iotaledger/goshimmer/plugins/webapi/healthz"
"github.com/iotaledger/goshimmer/plugins/webapi/info"
"github.com/iotaledger/goshimmer/plugins/webapi/ledgerstate"
"github.com/iotaledger/goshimmer/plugins/webapi/mana"
"github.com/iotaledger/goshimmer/plugins/webapi/message"
"github.com/iotaledger/goshimmer/plugins/webapi/tools"
"github.com/iotaledger/goshimmer/plugins/webapi/value"
)
// WebAPI contains the webapi endpoint plugins of a GoShimmer node.
var WebAPI = node.Plugins(
webapi.Plugin(),
data.Plugin(),
drng.Plugin(),
faucet.Plugin(),
healthz.Plugin(),
message.Plugin(),
autopeering.Plugin(),
info.Plugin(),
value.Plugin(),
tools.Plugin(),
mana.Plugin(),
ledgerstate.Plugin(),
)