mirror of
https://gitee.com/johng/gf
synced 2026-06-28 10:16:09 +08:00
14 lines
159 B
Go
14 lines
159 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func main() {
|
|
ctx, cancel := context.WithCancel(nil)
|
|
go func() {
|
|
for {
|
|
|
|
}
|
|
}()
|
|
} |