mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
12 lines
208 B
Go
12 lines
208 B
Go
//go:build !go1.21
|
|
|
|
package scanner
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// TODO Remove this file when we drop support for go 1.20
|
|
func contextWithoutCancel(ctx context.Context) context.Context {
|
|
return context.TODO()
|
|
}
|