reflector.go/main.go

14 lines
151 B
Go
Raw Normal View History

package main
2019-06-05 17:03:55 +02:00
import (
"math/rand"
"time"
"github.com/lbryio/reflector.go/cmd"
)
func main() {
2019-06-05 17:03:55 +02:00
rand.Seed(time.Now().UnixNano())
2018-02-02 22:48:57 +01:00
cmd.Execute()
2018-01-29 20:37:26 +01:00
}