mtfosbot/module/background/background.go
2018-09-10 18:13:27 +08:00

15 lines
191 B
Go

package background
import (
"github.com/robfig/cron"
)
var c *cron.Cron
// SetBackground -
func SetBackground() {
c = cron.New()
c.AddFunc("0 * * * * *", readFacebookPage)
c.Start()
}