quintodrome/scanner/rescanall.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
161 B
Go
Raw Normal View History

//go:build go1.21
package scanner
import (
"context"
)
func contextWithoutCancel(ctx context.Context) context.Context {
return context.WithoutCancel(ctx)
}