mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 02:20:47 +08:00
22 lines
312 B
Go
22 lines
312 B
Go
//go:build linux && webkit2_36
|
|
|
|
package webview
|
|
|
|
/*
|
|
#cgo linux pkg-config: webkit2gtk-4.0
|
|
|
|
#include "webkit2/webkit2.h"
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
)
|
|
|
|
const Webkit2MinMinorVersion = 36
|
|
|
|
func webkit_uri_scheme_request_get_http_body(_ *C.WebKitURISchemeRequest) io.ReadCloser {
|
|
return http.NoBody
|
|
}
|