mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 11:00:28 +00:00
16 lines
355 B
Go
16 lines
355 B
Go
package main
|
|
|
|
import (
|
|
//"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"
|
|
)
|
|
|
|
func main() {
|
|
store := makeStoreSquareGrid(4)
|
|
var block chan struct{}
|
|
<-block
|
|
panic(store)
|
|
}
|