lbry.go/main.go

17 lines
172 B
Go
Raw Normal View History

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