mirror of
https://gitee.com/johng/gf
synced 2026-06-25 09:15:41 +08:00
12 lines
170 B
Go
12 lines
170 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
)
|
|
|
|
func main() {
|
|
ctx := gctx.New()
|
|
g.Log().Debug(ctx, `this is sub process`)
|
|
}
|