mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
14 lines
211 B
Go
14 lines
211 B
Go
//go:build go1.20
|
|
|
|
package common
|
|
|
|
import "context"
|
|
|
|
type (
|
|
ContextCancelCauseFunc = context.CancelCauseFunc
|
|
)
|
|
|
|
var (
|
|
ContextWithCancelCause = context.WithCancelCause
|
|
ContextCause = context.Cause
|
|
)
|