mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-11-23 12:02:58 -05:00
11 lines
154 B
Go
11 lines
154 B
Go
package ext
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
)
|
|
|
|
type BrowserForwarder interface {
|
|
DialWebsocket(url string, header http.Header) (io.ReadWriteCloser, error)
|
|
}
|