reflector.go/main.go
2019-06-05 11:03:55 -04:00

14 lines
151 B
Go

package main
import (
"math/rand"
"time"
"github.com/lbryio/reflector.go/cmd"
)
func main() {
rand.Seed(time.Now().UnixNano())
cmd.Execute()
}