2020-08-03 20:01:38 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-10-21 19:54:40 +00:00
|
|
|
"github.com/Secured-Finance/dione/node"
|
2020-10-21 20:36:05 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-08-03 20:01:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-08-19 19:26:48 +00:00
|
|
|
err := node.Start()
|
|
|
|
if err != nil {
|
2020-10-21 20:36:05 +00:00
|
|
|
logrus.Panic(err)
|
2020-08-19 19:26:48 +00:00
|
|
|
}
|
2020-08-03 20:01:38 +00:00
|
|
|
}
|