lbry.go/main.go

17 lines
172 B
Go
Raw Normal View History

package main
import (
2017-09-12 18:04:45 +02:00
log "github.com/sirupsen/logrus"
)
func main() {
2017-09-13 00:15:26 +02:00
log.SetLevel(log.DebugLevel)
2017-08-17 17:46:51 +02:00
2017-09-15 13:58:54 +02:00
//franklin()
2017-09-13 00:15:26 +02:00
2017-09-16 00:13:13 +02:00
err := ytsync()
if err != nil {
panic(err)
}
}