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.

17 lines
208 B

  1. package main
  2. import (
  3. "fmt"
  4. swarm "github.com/vocdoni/go-dvote/net/swarm"
  5. )
  6. func main() {
  7. sn := new(swarm.SwarmNet)
  8. err := sn.Init()
  9. if err != nil {
  10. fmt.Printf("%v\n", err)
  11. return
  12. }
  13. sn.Test()
  14. }