Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//go:build go1.21
package scanner
import (
"context"
)
func contextWithoutCancel(ctx context.Context) context.Context {
return context.WithoutCancel(ctx)
}