fblook/module/background/background.go

15 lines
196 B
Go

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