Skip to content
Snippets Groups Projects
Commit acd0da11 authored by jkrvivian's avatar jkrvivian
Browse files

fix: remove prefix "webapi" in webapi bundles

parent 49b4bf49
No related branches found
No related tags found
No related merge requests found
...@@ -2,25 +2,25 @@ package webapi ...@@ -2,25 +2,25 @@ package webapi
import ( import (
"github.com/iotaledger/goshimmer/plugins/webapi" "github.com/iotaledger/goshimmer/plugins/webapi"
webapi_broadcastData "github.com/iotaledger/goshimmer/plugins/webapi/broadcastData" "github.com/iotaledger/goshimmer/plugins/webapi/broadcastData"
webapi_findTransactionHashes "github.com/iotaledger/goshimmer/plugins/webapi/findTransactionHashes" "github.com/iotaledger/goshimmer/plugins/webapi/findTransactionHashes"
webapi_getNeighbors "github.com/iotaledger/goshimmer/plugins/webapi/getNeighbors" "github.com/iotaledger/goshimmer/plugins/webapi/getNeighbors"
webapi_getTransactionObjectsByHash "github.com/iotaledger/goshimmer/plugins/webapi/getTransactionObjectsByHash" "github.com/iotaledger/goshimmer/plugins/webapi/getTransactionObjectsByHash"
webapi_getTransactionTrytesByHash "github.com/iotaledger/goshimmer/plugins/webapi/getTransactionTrytesByHash" "github.com/iotaledger/goshimmer/plugins/webapi/getTransactionTrytesByHash"
webapi_gtta "github.com/iotaledger/goshimmer/plugins/webapi/gtta" "github.com/iotaledger/goshimmer/plugins/webapi/gtta"
webapi_spammer "github.com/iotaledger/goshimmer/plugins/webapi/spammer" "github.com/iotaledger/goshimmer/plugins/webapi/spammer"
webapi_auth "github.com/iotaledger/goshimmer/plugins/webauth" "github.com/iotaledger/goshimmer/plugins/webauth"
"github.com/iotaledger/hive.go/node" "github.com/iotaledger/hive.go/node"
) )
var PLUGINS = node.Plugins( var PLUGINS = node.Plugins(
webapi.PLUGIN, webapi.PLUGIN,
webapi_auth.PLUGIN, webauth.PLUGIN,
webapi_gtta.PLUGIN, gtta.PLUGIN,
webapi_spammer.PLUGIN, spammer.PLUGIN,
webapi_broadcastData.PLUGIN, broadcastData.PLUGIN,
webapi_getTransactionTrytesByHash.PLUGIN, getTransactionTrytesByHash.PLUGIN,
webapi_getTransactionObjectsByHash.PLUGIN, getTransactionObjectsByHash.PLUGIN,
webapi_findTransactionHashes.PLUGIN, findTransactionHashes.PLUGIN,
webapi_getNeighbors.PLUGIN, getNeighbors.PLUGIN,
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment