mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-04-19 05:22:25 +00:00
12 lines
146 B
Go
12 lines
146 B
Go
package util
|
|
|
|
import "context"
|
|
|
|
func IsDone(ctx context.Context) bool {
|
|
select {
|
|
case <-ctx.Done():
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|