mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
11 lines
161 B
Go
11 lines
161 B
Go
//go:build go1.21
|
|
|
|
package scanner
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func contextWithoutCancel(ctx context.Context) context.Context {
|
|
return context.WithoutCancel(ctx)
|
|
}
|