lbry.go/main.go

19 lines
231 B
Go
Raw Normal View History

package main
import (
2018-02-27 13:30:54 -05:00
"math/rand"
"time"
2017-09-27 14:10:41 -04:00
"github.com/lbryio/lbry.go/cmd"
2017-09-22 09:24:43 -04:00
2017-09-12 12:04:45 -04:00
log "github.com/sirupsen/logrus"
)
var Version string
func main() {
2018-02-27 13:30:54 -05:00
rand.Seed(time.Now().UnixNano())
2017-09-12 18:15:26 -04:00
log.SetLevel(log.DebugLevel)
2017-09-27 14:10:41 -04:00
cmd.Execute()
}