mirror of
https://gitee.com/johng/gf
synced 2026-07-07 22:27:06 +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)
|
|
}
|