You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package main
import ( "fmt"
swarm "github.com/vocdoni/go-dvote/net/swarm" )
func main() { sn := new(swarm.SwarmNet) err := sn.Init() if err != nil { fmt.Printf("%v\n", err) return } sn.Test() }
|