type Proxy interface {
// Start starts a proxy server that listens on given addr.// Start blocks until the server is stopped or an error occurs.// Start always returns a non-nil error.
Start(string) error
}
Proxy is an interface that provides a new reverse proxy.