mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
17 lines
238 B
Go
17 lines
238 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/gogf/gf/os/gcron"
|
|
"github.com/gogf/gf/os/glog"
|
|
)
|
|
|
|
func main() {
|
|
gcron.SetLogLevel(glog.LEVEL_ALL)
|
|
gcron.Add("* * * * * ?", func() {
|
|
glog.Println("test")
|
|
})
|
|
time.Sleep(3 * time.Second)
|
|
}
|