lbry.go/main.go
2018-02-27 13:31:19 -05:00

19 lines
231 B
Go

package main
import (
"math/rand"
"time"
"github.com/lbryio/lbry.go/cmd"
log "github.com/sirupsen/logrus"
)
var Version string
func main() {
rand.Seed(time.Now().UnixNano())
log.SetLevel(log.DebugLevel)
cmd.Execute()
}