16 lines
172 B
Go
16 lines
172 B
Go
package main
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
log.SetLevel(log.DebugLevel)
|
|
|
|
//franklin()
|
|
|
|
err := ytsync()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|