Skip to content
Snippets Groups Projects
Unverified Commit f9d47f24 authored by Hans Moog's avatar Hans Moog Committed by GitHub
Browse files

Create main.go

parent b65e798f
Branches
Tags
No related merge requests found
main.go 0 → 100644
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,
)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment