14 lines
174 B
Go
14 lines
174 B
Go
package main
|
|
|
|
import (
|
|
"github.com/Secured-Finance/dione/node"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
err := node.Start()
|
|
if err != nil {
|
|
logrus.Panic(err)
|
|
}
|
|
}
|