mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
12 lines
150 B
Go
12 lines
150 B
Go
package utils
|
|
|
|
import "context"
|
|
|
|
func IsCtxDone(ctx context.Context) bool {
|
|
select {
|
|
case <-ctx.Done():
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|