lbry.go/main.go

15 lines
175 B
Go
Raw Normal View History

package main
import (
2017-09-27 20:10:41 +02:00
"github.com/lbryio/lbry.go/cmd"
2017-09-22 15:24:43 +02:00
2017-09-12 18:04:45 +02:00
log "github.com/sirupsen/logrus"
)
var Version string
func main() {
2017-09-13 00:15:26 +02:00
log.SetLevel(log.DebugLevel)
2017-09-27 20:10:41 +02:00
cmd.Execute()
}