browser.go 154 B

12345678910
  1. package ext
  2. import (
  3. "io"
  4. "net/http"
  5. )
  6. type BrowserForwarder interface {
  7. DialWebsocket(url string, header http.Header) (io.ReadWriteCloser, error)
  8. }