reflector.go/main.go

14 lines
151 B
Go
Raw Normal View History

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