mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 15:10:01 +08:00
12 lines
146 B
Go
12 lines
146 B
Go
package main
|
|
|
|
import "zero/core/threading"
|
|
|
|
func main() {
|
|
q := threading.NewTaskRunner(5)
|
|
q.Schedule(func() {
|
|
panic("hello")
|
|
})
|
|
select {}
|
|
}
|