package tqm

import (
	"context"
	"time"
)

// _ctxWithTimeout is a thin alias so the tqm.go file can call without
// importing context twice; tests can swap it out by replacing this var.
func _ctxWithTimeout(parent context.Context, d time.Duration) (context.Context, context.CancelFunc) {
	return context.WithTimeout(parent, d)
}
