mirror of
https://github.com/Chenyu550/alist-fork.git
synced 2025-06-10 14:46:53 -04:00
13 lines
151 B
Go
13 lines
151 B
Go
package utils
|
|
|
|
import "context"
|
|
|
|
func IsCanceled(ctx context.Context) bool {
|
|
select {
|
|
case <-ctx.Done():
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|