예제 #1
0
파일: outbound.go 프로젝트: yarpc/yarpc-go
func (o *Outbound) createRequest(peer *hostport.Peer, treq *transport.Request) (*http.Request, error) {
	newURL := *o.urlTemplate
	newURL.Host = peer.HostPort()
	return http.NewRequest("POST", newURL.String(), treq.Body)
}