From f9d47f2473fcb6f4a65e9a17b881367cac676b98 Mon Sep 17 00:00:00 2001 From: Hans Moog <hm@mkjc.net> Date: Fri, 29 Mar 2019 06:24:22 +0100 Subject: [PATCH] Create main.go --- main.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 00000000..76a9ca87 --- /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, + ) +} -- GitLab