mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2026-02-26 16:57:08 +00:00
12 lines
160 B
Go
12 lines
160 B
Go
//go:build !go1.21
|
|
|
|
package contextutils
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func AfterFunc(ctx context.Context, f func()) (stop func() bool) {
|
|
return afterFunc(ctx, f)
|
|
}
|