mirror of
https://github.com/caddyserver/caddy.git
synced 2025-03-09 15:39:02 -04:00
11 lines
138 B
Go
11 lines
138 B
Go
package caddy
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
type ProxyFuncProducer interface {
|
|
ProxyFunc() func(*http.Request) (*url.URL, error)
|
|
}
|