github.com/AlpineAIO/wails/v2@v2.0.0-beta.32.0.20240505041856-1047a8fa5fef/pkg/assetserver/webview/webkit2_36.go (about)

     1  //go:build linux && webkit2_36
     2  
     3  package webview
     4  
     5  /*
     6  #cgo linux pkg-config: webkit2gtk-4.0
     7  
     8  #include "webkit2/webkit2.h"
     9  */
    10  import "C"
    11  
    12  import (
    13  	"io"
    14  	"net/http"
    15  )
    16  
    17  const Webkit2MinMinorVersion = 36
    18  
    19  func webkit_uri_scheme_request_get_http_body(_ *C.WebKitURISchemeRequest) io.ReadCloser {
    20  	return http.NoBody
    21  }