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