Proposal add a context.Context parameter for method NewRequest in interface Client ---- current: ```go NewRequest(method, url string) *resty.Request ``` proposal: ```go NewRequest(ctx context.Context, method, url string) *resty.Request ``` So that, we can initialize the testy.Request with some information from the Context, such as injecting trace ID and JWT token in http header .