mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-05-13 13:38:06 +08:00
10 lines
162 B
Go
10 lines
162 B
Go
|
//go:build go1.21
|
||
|
|
||
|
package contextutils
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
func AfterFunc(ctx context.Context, f func()) (stop func() bool) {
|
||
|
return context.AfterFunc(ctx, f)
|
||
|
}
|