wangxin
Results
2
issues of
wangxin
` type MyCtx struct { A int B int } func setup1(ctx *MyCtx) error { for i := 0 ; i < 1; i++ { fmt.Println("setup1", ctx.A, ctx.B) time.Sleep(1*time.Second) }...