diff --git a/main.go b/main.go new file mode 100644 index 0000000000000000000000000000000000000000..76a9ca8770a3d3b336dd7d7b53268ce20d5108ea --- /dev/null +++ b/main.go @@ -0,0 +1,18 @@ +package main + +import ( + "github.com/iotaledger/goshimmer/packages/node" + "github.com/iotaledger/goshimmer/plugins/autopeering" + "github.com/iotaledger/goshimmer/plugins/cli" + "github.com/iotaledger/goshimmer/plugins/gracefulshutdown" + "github.com/iotaledger/goshimmer/plugins/statusscreen" +) + +func main() { + node.Run( + cli.PLUGIN, + autopeering.PLUGIN, + statusscreen.PLUGIN, + gracefulshutdown.PLUGIN, + ) +}