mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 13:21:01 +08:00
18 lines
229 B
Go
18 lines
229 B
Go
package webview
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
)
|
|
|
|
type Request interface {
|
|
URL() (string, error)
|
|
Method() (string, error)
|
|
Header() (http.Header, error)
|
|
Body() (io.ReadCloser, error)
|
|
|
|
Response() ResponseWriter
|
|
|
|
Close() error
|
|
}
|