Add proxy string method

This commit is contained in:
Asim Aslam
2019-12-16 15:18:20 +00:00
parent 303adca500
commit 1ea6390eae
4 changed files with 14 additions and 0 deletions

View File

@@ -188,6 +188,10 @@ func (p *Proxy) ServeRequest(ctx context.Context, req server.Request, rsp server
}
}
func (p *Proxy) String() string {
return "http"
}
// NewSingleHostProxy returns a router which sends requests to a single http backend
func NewSingleHostProxy(url string) proxy.Proxy {
return &Proxy{