mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 05:10:26 +00:00
24 lines
493 B
Go
24 lines
493 B
Go
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
|
|
"github.com/gologme/log"
|
|
|
|
//"github.com/yggdrasil-network/yggdrasil-go/src/address"
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/config"
|
|
//"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/yggdrasil"
|
|
)
|
|
|
|
type simNode struct {
|
|
core yggdrasil.Core
|
|
id int
|
|
}
|
|
|
|
func newNode(id int) *simNode {
|
|
n := simNode{id: id}
|
|
n.core.Start(config.GenerateConfig(), log.New(ioutil.Discard, "", 0))
|
|
return &n
|
|
}
|